This commit is contained in:
2024-02-19 13:32:49 +01:00
parent 269aedcc0e
commit 08ff87952c
5 changed files with 64 additions and 78 deletions

View File

@@ -24,5 +24,16 @@
];
};
};
nixos = nixpkgs.lib.nixosSystem {
modules = [
./configuration.nix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.livenux = import ./home.nix;
}
];
};
};
}