This commit is contained in:
ChaotiCryptidz 2022-08-19 10:51:01 +01:00
parent 9a709fab18
commit aaccc72729
No known key found for this signature in database
4 changed files with 19 additions and 15 deletions

View file

@ -96,11 +96,11 @@
"utils": "utils_3"
},
"locked": {
"lastModified": 1660252108,
"narHash": "sha256-fpY8X+eJmClJyVnMQJ7bpsNgn/CxPE9+UkkJ0FRIKQ8=",
"lastModified": 1660330190,
"narHash": "sha256-RgQUtZGmdb9fRkdBcI8x1KYuykbQCBaeY6ejFls7hFM=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "324fedcf9f1c475e2f522d03af029528e65969bc",
"rev": "8675cfa549e1240c9d2abb1c878bc427eefcf926",
"type": "github"
},
"original": {
@ -118,11 +118,11 @@
"utils": "utils_4"
},
"locked": {
"lastModified": 1659626571,
"narHash": "sha256-M9pCl7d9L/oYk9EkVR2RyGEIguGucT2TOT+OxCwEpVY=",
"lastModified": 1660637669,
"narHash": "sha256-9IY0GmzoWDTJ8CHizAw8GEJ0xU18qjtNu39c7S9Y8Ps=",
"owner": "ChaotiCryptidz",
"repo": "musicutil",
"rev": "204c73d46cc63c5849ca0665dbcee0ecdb451832",
"rev": "ab30add61a04bda6a5f436e7e99e17cfbbeea90b",
"type": "gitlab"
},
"original": {
@ -186,11 +186,11 @@
},
"nixpkgs-unstable": {
"locked": {
"lastModified": 1660162369,
"narHash": "sha256-pZukMP4zCA1FaBg0xHxf7KdE/Nv/C5YbDID7h2L8O7A=",
"lastModified": 1660305968,
"narHash": "sha256-r0X1pZCSEA6mzt5OuTA7nHuLmvnbkwgpFAh1iLIx4GU=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "3a11db5f408095b8f08b098ec2066947f4b72ce2",
"rev": "c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d",
"type": "github"
},
"original": {
@ -274,11 +274,11 @@
},
"utils_4": {
"locked": {
"lastModified": 1649676176,
"narHash": "sha256-OWKJratjt2RW151VUlJPRALb7OU2S5s+f0vLj4o1bHM=",
"lastModified": 1659877975,
"narHash": "sha256-zllb8aq3YO3h8B/U0/J1WBgAL8EX5yWf5pMj3G0NAmc=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "a4b154ebbdc88c8498a5c7b01589addc9e9cb678",
"rev": "c0e246b9b83f637f4681389ecabcb2681b4f3af0",
"type": "github"
},
"original": {

View file

@ -22,6 +22,8 @@ in {
"synthwave84.disableGlow" = true;
};
};
programs.vscode.extensions = with pkgs; [ vscode-extensions.matklad.rust-analyzer ];
# make config changeable
#home = {
# activation = {

View file

@ -27,6 +27,7 @@ in {
cache {
backend = "redis";
}
min_learns = 5;
'';
};
"dkim_signing.conf" = {

View file

@ -140,7 +140,7 @@ in {
nix.gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 4d";
options = "--delete-older-than 30d";
};
nix.extraOptions = ''
@ -152,9 +152,10 @@ in {
nix.buildMachines = [{
hostName = "hetzner-vm.servers.genderfucked.monster";
system = "x86_64-linux";
maxJobs = 6;
maxJobs = 12;
speedFactor = 2;
sshUser = "chaos";
sshUser = "root";
sshKey = "/usb/ssh-keys/chaos.priv";
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
mandatoryFeatures = [ ];
}];