mochi/nixos/profiles/hw-legion-15arh05h.nix
2024-07-13 02:47:38 -05:00

35 lines
661 B
Nix

{ lib, pkgs, ... }:
{
# Support windows partition
mySystem = {
security.wheelNeedsSudoPassword = false;
system.packages = with pkgs; [
ntfs3g
];
};
boot = {
# for managing/mounting ntfs
supportedFilesystems = [ "ntfs" "nfs" ];
loader = {
grub = {
enable = true;
zfsSupport = true;
device = "nodev";
mirroredBoots = [
{ devices = [ "nodev" ]; path = "/boot"; }
];
};
# efi = {
# canTouchEfiVariables = true;
# };
};
};
networking = {
useDHCP = lib.mkDefault true;
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}