desktop profile

This commit is contained in:
John Lancaster
2026-02-16 10:57:49 -06:00
parent 10a19d6885
commit db6b8c0fb2
2 changed files with 16 additions and 14 deletions

View File

@@ -12,7 +12,7 @@ in
programs.git.settings.user.email = "32917998+jsl12@users.noreply.github.com";
};
flake.modules.nixos."${userName}" =
flake.modules.nixos.user =
{ pkgs, ... }:
{
users.users."${userName}" = {
@@ -27,17 +27,4 @@ in
];
};
};
flake.homeConfigurations.${userName} = inputs.home-manager.lib.homeManagerConfiguration {
pkgs = import inputs.nixpkgs { system = "x86_64-linux"; };
modules = with inputs.self.homeModules; [
john
ssh
git
rebuild
ghostty
sops
zsh
];
};
}

View File

@@ -0,0 +1,15 @@
{ inputs, self, ... }:
{
flake.homeConfigurations.desktop = inputs.home-manager.lib.homeManagerConfiguration {
pkgs = import inputs.nixpkgs { system = "x86_64-linux"; };
modules = with inputs.self.homeModules; [
john
ssh
git
rebuild
ghostty
sops
zsh
];
};
}