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

22 lines
329 B
Nix
Raw Permalink Normal View History

2024-07-29 16:09:03 -05: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";
}