blob: 1190c0ffb5758d53ee26c2a53c87b0bcff90071a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
];
}
|