refactor: move windows drive mount out of hardware-configuration.nix
This commit is contained in:
parent
1f04150ff2
commit
268e698221
2 changed files with 7 additions and 6 deletions
|
@ -15,6 +15,13 @@ in {
|
|||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
# Allow nemesis to access files on the windows drive.
|
||||
fileSystems."/mnt/windows" =
|
||||
{ device = "/dev/nvme0n1p3";
|
||||
fsType = "ntfs-3g";
|
||||
options = [ "rw" "uid=rafiq" ];
|
||||
};
|
||||
|
||||
# Graphics settings are defined here
|
||||
hardware = {
|
||||
graphics.enable = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue