mochi/.archive/profiles/hw-framework-16-7840hs.nix
Joseph Hanson 2b6d062d16
All checks were successful
Build / nix-build (native-x86_64, telperion) (push) Successful in 2m13s
Build / nix-build (native-x86_64, gandalf) (push) Successful in 3m23s
Build / nix-build (native-x86_64, shadowfax) (push) Successful in 4m38s
reformat
2024-12-27 21:30:25 -06:00

32 lines
532 B
Nix

{
config,
lib,
pkgs,
...
}:
{
mySystem = {
security.wheelNeedsSudoPassword = false;
};
boot = {
# for managing/mounting nfs
supportedFilesystems = [ "nfs" ];
loader = {
systemd-boot.enable = true;
efi = {
canTouchEfiVariables = true;
};
};
};
# For updating firmware on the Framework.
services.fwupd.enable = true;
networking = {
useDHCP = lib.mkDefault true;
networkmanager.enable = true;
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}