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

27 lines
525 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";
}