PortValhalla/profiles/machines/manuel/office.nix

40 lines
754 B
Nix
Raw Normal View History

2024-12-30 11:08:51 +00:00
{ lib, ... }: {
imports = [
./defaults.nix
./Generic/Arch/config.nix
];
config = {
valhalla = {
hostname = "falcon";
hidpi = true;
linux.secureBoot = true;
windows = {
dualboot = {
enable = true;
linuxPercentage = 70;
};
users.manuel = {
groups = [ "Administrators" ];
};
};
fileSystems.diskSetup.devices.OS.partitions = {
# Keep Windows' boot partition
Boot.keepExisting = true;
Windows = {
index = 6;
label = "Windows";
format = "ntfs";
mountPoint = "/media/win";
mountOptions = [ "force" ];
keepExisting = true;
};
};
};
};
}