add standalone home-manager config
This commit is contained in:
parent
c560e894fb
commit
21f83eb26d
1 changed files with 11 additions and 1 deletions
12
flake.nix
12
flake.nix
|
@ -51,7 +51,7 @@
|
||||||
|
|
||||||
devShells = forAllSystems (system:
|
devShells = forAllSystems (system:
|
||||||
let pkgs = import nixpkgs { system = system; }; in
|
let pkgs = import nixpkgs { system = system; }; in
|
||||||
{ default = pkgs.mkShell { nativeBuildInputs = with pkgs; [ nix colmena git ]; }; });
|
{ default = pkgs.mkShell { nativeBuildInputs = with pkgs; [ nix colmena git pkgs.home-manager ]; }; });
|
||||||
|
|
||||||
colmena =
|
colmena =
|
||||||
{
|
{
|
||||||
|
@ -80,5 +80,15 @@
|
||||||
(import "${home-manager}/nixos")
|
(import "${home-manager}/nixos")
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
homeConfigurations.sammy =
|
||||||
|
let
|
||||||
|
pkgs = import nixpkgs { system = "x86_64-linux"; };
|
||||||
|
in
|
||||||
|
lib.homeManagerConfiguration {
|
||||||
|
inherit pkgs;
|
||||||
|
modules = [ ./modules/users/sammy.nix ];
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue