reorganize home-manager

This commit is contained in:
2024-09-27 12:08:34 -04:00
parent db224fba5e
commit 444bbf1ce1
6 changed files with 450 additions and 525 deletions

View File

@@ -7,6 +7,11 @@
...
}:
{
imports = [
./progs/fish.nix
./progs/helix.nix
];
home.stateVersion = "24.11";
home.packages = with pkgs; [
@@ -186,12 +191,6 @@
${pkgs.gnupg}/bin/gpg --import ${config.age.secrets.gnupg.path}
'';
#fish shell!
programs.fish = import ./progs/fish.nix { inherit pkgs; };
#text editor
programs.helix = import ./progs/helix.nix { inherit pkgs; };
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}