diff options
Diffstat (limited to 'hosts/copenhagen/home')
| -rw-r--r-- | hosts/copenhagen/home/c.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/hosts/copenhagen/home/c.nix b/hosts/copenhagen/home/c.nix new file mode 100644 index 0000000..1190c0f --- /dev/null +++ b/hosts/copenhagen/home/c.nix @@ -0,0 +1,23 @@ +{ lib, pkgs, inputs, config, ...}: + +{ + imports = [ + inputs.impermanence.nixosModules.home-manager.impermanence + ]; + + home.stateVersion = "23.11"; + + home.persistence."/persist/home/c" = { + directories = [ + ".gnupg" + ".ssh" + + ".local/bin" + ]; + allowOther = true; + }; + + home.packages = with pkgs; [ + cloc + ]; +} |