nixos-config/linux/singularity/configuration.nix

16 lines
301 B
Nix
Raw Normal View History

2025-10-15 22:24:37 -07:00
{pkgs, ...}: {
2023-10-09 10:44:07 -07:00
boot = {
2025-10-15 22:24:37 -07:00
kernelPackages = pkgs.linuxPackages_latest;
2023-10-09 10:44:07 -07:00
loader.grub.device = "/dev/sda";
2025-10-15 22:24:37 -07:00
tmp.cleanOnBoot = true;
2023-10-09 10:44:07 -07:00
};
constants.sopsFile = ../../common/auths.yaml;
security.sudo.wheelNeedsPassword = false;
2025-06-08 10:22:00 -05:00
system.stateVersion = "25.11";
2023-10-09 10:44:07 -07:00
zramSwap.enable = true;
}