Compare commits

...

3 commits

Author SHA1 Message Date
cb524d3060
chore: bump inputs 2025-03-07 21:03:23 +08:00
0dd76b4b25
unstable lts kernel + increase configuration limit 2025-03-07 21:02:52 +08:00
3dcfac6d31
delete older 28d 2025-03-07 21:01:58 +08:00
3 changed files with 7 additions and 7 deletions

8
flake.lock generated
View file

@ -1353,11 +1353,11 @@
"nixpkgs": "nixpkgs_9" "nixpkgs": "nixpkgs_9"
}, },
"locked": { "locked": {
"lastModified": 1741314959, "lastModified": 1741315478,
"narHash": "sha256-v9BYIH/GYMOrgtpzLf3ctUeV2ji1mhe6pnLY81aoe1Q=", "narHash": "sha256-yLngwWiicW/QVftooz0Su8mGEAt9ow4SpcN3bryoyq4=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "ece1ef8571987daa0c07224b65fb96bbf320f2a1", "rev": "2421cd60a835200252b719a3d2e7cefe3d1f8929",
"revCount": 15, "revCount": 16,
"type": "git", "type": "git",
"url": "https://git.sajenim.dev/jasmine/xmonad-config.git" "url": "https://git.sajenim.dev/jasmine/xmonad-config.git"
}, },

View file

@ -9,7 +9,7 @@
# Automatically run the garbage collector an a specified time. # Automatically run the garbage collector an a specified time.
automatic = true; automatic = true;
dates = "weekly"; dates = "weekly";
options = "--delete-older-than 14d"; options = "--delete-older-than 28d";
}; };
# This will add each flake input as a registry # This will add each flake input as a registry

View file

@ -20,7 +20,7 @@
}; };
# Linux kernel used by NixOS. # Linux kernel used by NixOS.
kernelPackages = pkgs.linuxPackages_latest; kernelPackages = pkgs.unstable.linuxPackages;
# Parameters added to the kernel command line. # Parameters added to the kernel command line.
kernelParams = [ kernelParams = [
# Enable amdgpu driver sysfs API that allows fine grain control of GPU # Enable amdgpu driver sysfs API that allows fine grain control of GPU
@ -37,7 +37,7 @@
}; };
systemd-boot = { systemd-boot = {
enable = true; enable = true;
configurationLimit = 3; configurationLimit = 20;
}; };
}; };
}; };