diff options
Diffstat (limited to 'nix/home')
-rw-r--r-- | nix/home/default.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/nix/home/default.nix b/nix/home/default.nix index 86cbfe6..66510fc 100644 --- a/nix/home/default.nix +++ b/nix/home/default.nix @@ -1,6 +1,10 @@ -{ config, pkgs, ... }: +{ config, pkgs, inputs, ... }: { + imports = [ + inputs.home-manager.nixosModules.home-manager + ]; + home-manager.users.${config.user} = { home.username = config.user; |