nixos-config/linux/singularity/configuration.nix
2025-10-15 22:24:44 -07:00

15 lines
301 B
Nix

{pkgs, ...}: {
boot = {
kernelPackages = pkgs.linuxPackages_latest;
loader.grub.device = "/dev/sda";
tmp.cleanOnBoot = true;
};
constants.sopsFile = ../../common/auths.yaml;
security.sudo.wheelNeedsPassword = false;
system.stateVersion = "25.11";
zramSwap.enable = true;
}