nixos-cesium/config/configuration.nix
2026-02-07 11:56:38 +01:00

23 lines
510 B
Nix

{ config, pkgs, ... }:
{
imports = [ # Include the results of the hardware scan.
./hardware-configuration.nix
./common.nix
./services.nix
./users.nix
# ./vm-guest.nix
<home-manager/nixos>
];
# Home Manager Konfiguration
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.sebastian = import ./home.nix;
# NixOS Version (nicht ändern nach Erstinstallation)
system.stateVersion = "25.11";
nixpkgs.config.allowUnfree = true;
}