add standalone home-manager config

This commit is contained in:
CherryKitten 2024-03-24 19:02:30 +01:00
parent c560e894fb
commit 21f83eb26d
Signed by: sammy
GPG key ID: 98D8F75FB0658276

View file

@ -51,7 +51,7 @@
devShells = forAllSystems (system:
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 =
{
@ -80,5 +80,15 @@
(import "${home-manager}/nixos")
];
};
homeConfigurations.sammy =
let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in
lib.homeManagerConfiguration {
inherit pkgs;
modules = [ ./modules/users/sammy.nix ];
};
};
}