mochi/nixos/profiles/hw-framework-16-7840hs.nix
2024-07-14 05:13:52 -05:00

24 lines
439 B
Nix

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