blob: 9d8bbe64cf1e0f0e455c8f966b1a5839dd8ee87a (
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
32
33
34
35
36
37
38
39
40
41
42
43
|
{ 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;
};
programs = {
git = {
enable = true;
userName = "Caroline Larimore";
userEmail = "caroline@larimo.re";
signing = {
key = "DE64538967CA0C68";
signByDefault = true;
};
ignores = [
"*~"
"*.swp"
];
};
};
home.packages = with pkgs; [
cloc
];
}
|