aboutsummaryrefslogtreecommitdiff
path: root/hosts/copenhagen/home/c.nix
blob: ca9c5b9f8ea0d01621586233473a00ca231ef2e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ config, lib, pkgs, inputs, ...}:

{
  imports = [
    inputs.impermanence.nixosModules.home-manager.impermanence
  ];

  home.persistence."/persist/home/c" = {
    allowOther = true;
    
    directories = [
      ".gnupg"
      ".ssh"
      
      ".local/bin"
    ];
  };

  home.roles = {
    dev = {
      enable = true;
      key = "DE64538967CA0C68";
    };
  }

  home.packages = with pkgs; [
    cloc
  ];

  home.stateVersion = "23.11";
}