21 lines
451 B
Nix
21 lines
451 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ # Include the results of the hardware scan.
|
|
./hardware-configuration.nix
|
|
./common.nix
|
|
# ./vm.nix
|
|
<home-manager/nixos>
|
|
];
|
|
|
|
# Home Manager Konfiguration
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.useUserPackages = true;
|
|
|
|
# Dein(e) Benutzer mit Home Manager
|
|
home-manager.users.sebastian = import ./home.nix;
|
|
|
|
system.stateVersion = "25.11";
|
|
nixpkgs.config.allowUnfree = true;
|
|
}
|