poseidon: enable home-manager
This commit is contained in:
parent
3ae7ab21bc
commit
3384c77a2d
3 changed files with 24 additions and 0 deletions
15
flake.nix
15
flake.nix
|
|
@ -35,9 +35,24 @@
|
|||
nixosConfigurations.poseidon = nixpkgs.lib.nixosSystem rec {
|
||||
system = "x86_64-linux";
|
||||
modules =
|
||||
let
|
||||
unstablePkgs = import nixpkgs-unstable { inherit system; };
|
||||
in
|
||||
[
|
||||
./poseidon.nix
|
||||
|
||||
({ config, utils, ... }: home-manager.nixosModules.home-manager {
|
||||
pkgs = unstablePkgs;
|
||||
lib = unstablePkgs.lib;
|
||||
inherit config utils;
|
||||
})
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.alarsyo = import ./home;
|
||||
home-manager.verbose = true;
|
||||
}
|
||||
|
||||
{
|
||||
nixpkgs.overlays =
|
||||
let
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue