mochi/nixos/profiles/hw-hp-s01.nix
2024-07-29 16:09:03 -05:00

21 lines
329 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";
}