Compare commits

...

2 commits

Author SHA1 Message Date
1d2ac15172 feat(amd): add cider-2 to program list
- Added `cider-2` to the `programs` list in `default.nix` for extended functionality.
- Aligns with the existing pattern of including commonly used utilities.
2026-01-19 09:15:04 +01:00
8ea3c78aa0 feat(amd): add kernel parameters for boot configuration
- Added `lockdown=confidentiality`, `quiet`, `splash`, `video=efifb:nobgrt`, and `mitigations=off` to `boot.kernelParams` for improved boot behavior.
- Enhances security, reduces verbosity, and
2026-01-19 09:13:58 +01:00
2 changed files with 9 additions and 0 deletions

View file

@ -89,6 +89,7 @@ with lib.metacfg;
tipp10
uv
vscode
cider-2
];
zramSwap.enable = true;

View file

@ -26,6 +26,14 @@
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
boot.kernelParams = [
"lockdown=confidentiality"
"quiet"
"splash"
"video=efifb:nobgrt"
"mitigations=off"
];
fileSystems."/" = {
device = "/dev/disk/by-uuid/050c9912-36c3-4a65-ba8b-ba68e5171e18";
fsType = "ext4";