mochi/nixos/profiles/hw-hp-s01.nix

21 lines
327 B
Nix
Raw Normal View History

2025-03-06 09:51:33 -06:00
{lib, ...}: {
2024-07-06 16:47:01 -05:00
mySystem = {
security.wheelNeedsSudoPassword = false;
};
boot = {
2024-07-13 02:47:38 -05:00
loader = {
2024-07-07 10:11:05 -05:00
systemd-boot.enable = true;
efi = {
canTouchEfiVariables = true;
2024-07-06 16:47:01 -05:00
};
};
};
networking = {
useDHCP = lib.mkDefault true;
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}