-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.nix
More file actions
40 lines (33 loc) · 1.23 KB
/
Copy pathconfig.nix
File metadata and controls
40 lines (33 loc) · 1.23 KB
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
{
const = {
state-version-nixpkgs = "25.05";
state-version-hm = "26.05";
state-version-darwin = 6;
ssh-keys-pavel = [
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJKA1LYgjfuWSxa1lZRCebvo3ghtSAtEQieGlVCknF8f pshirshov@7mind.io''
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMxs2z8cQYA3VlCbVJBLLIAcQTV9JXJZN5oEtffKyTWe pshirshov@7mind.io:llm''
];
ssh-keys-nix-builder = [
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJM1TV44pHGx0MxbHPRr+AkkP6k1ppS2pYJdvJGPVQsR builder''
];
universal-aliases = {
"j" = "z"; # zoxide
lsblk =
"lsblk -o NAME,TYPE,FSTYPE,SIZE,MOUNTPOINT,FSUSE%,WWN,SERIAL,MODEL";
watch = "viddy";
tree = "lsd --tree";
la = "lsd -lha --group-directories-first";
myip = "curl -4 ifconfig.co";
myip4 = "curl -4 ifconfig.co";
myip6 = "curl -6 ifconfig.co";
};
};
cfg-packages = { inputs, pkgs, arch }:
{
jdk-main = pkgs.graalvmPackages.graalvm-ce;
# OpenZFS 2.4.4 META already declares Linux-Maximum: 7.2 (nixpkgs
# kernelMaxSupportedMajorMinor matches). The previous 7.0 → 7.1
# substituteInPlace is stale and fails --replace-fail against 2.4.4.
linux-kernel = pkgs.linuxKernel.packages.linux_7_2;
};
}