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