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

20 lines
327 B
Nix

{lib, ...}: {
mySystem = {
security.wheelNeedsSudoPassword = false;
};
boot = {
loader = {
systemd-boot.enable = true;
efi = {
canTouchEfiVariables = true;
};
};
};
networking = {
useDHCP = lib.mkDefault true;
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}