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

26 lines
470 B
Nix
Raw Normal View History

{ lib, pkgs, ... }:
{
# Support windows partition
mySystem = {
security.wheelNeedsSudoPassword = false;
};
boot = {
# for managing/mounting ntfs
supportedFilesystems = [ "nfs" ];
loader = {
2024-07-10 15:12:00 -05:00
systemd-boot.enable = true;
efi = {
canTouchEfiVariables = true;
};
};
};
networking = {
useDHCP = lib.mkDefault true;
2024-07-10 15:12:00 -05:00
networkmanager.enable = true;
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}