desktop profile
This commit is contained in:
@@ -12,7 +12,7 @@ in
|
|||||||
programs.git.settings.user.email = "32917998+jsl12@users.noreply.github.com";
|
programs.git.settings.user.email = "32917998+jsl12@users.noreply.github.com";
|
||||||
};
|
};
|
||||||
|
|
||||||
flake.modules.nixos."${userName}" =
|
flake.modules.nixos.user =
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
users.users."${userName}" = {
|
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
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
15
modules/profiles/desktop.nix
Normal file
15
modules/profiles/desktop.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user