mochi/.archive/profiles/hw-framework-16-7840hs.nix

33 lines
532 B
Nix
Raw Normal View History

2024-12-27 21:30:25 -06:00
{
config,
lib,
pkgs,
...
}:
{
mySystem = {
security.wheelNeedsSudoPassword = false;
};
boot = {
2024-07-14 05:13:52 -05:00
# for managing/mounting nfs
supportedFilesystems = [ "nfs" ];
loader = {
2024-07-10 15:12:00 -05:00
systemd-boot.enable = true;
efi = {
canTouchEfiVariables = true;
};
};
};
2024-12-27 21:30:25 -06:00
# For updating firmware on the Framework.
2024-07-15 18:10:39 -05:00
services.fwupd.enable = true;
networking = {
useDHCP = lib.mkDefault true;
2024-07-10 15:12:00 -05:00
networkmanager.enable = true;
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}