[NixOS] Mount windows driver

This commit is contained in:
Ivan Malison 2018-07-19 14:01:00 -07:00
parent 731b61918c
commit 1800d58624
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -23,6 +23,11 @@
fsType = "vfat"; fsType = "vfat";
}; };
fileSystems."/windows" = {
device = "/dev/disk/by-uuid/DEFA1F27FA1EFC09";
fsType = "ntfs";
};
fileSystems."/arch-linux-root" = { fileSystems."/arch-linux-root" = {
device = "/dev/disk/by-uuid/9095e51e-33f9-440d-a272-46e129800f81"; device = "/dev/disk/by-uuid/9095e51e-33f9-440d-a272-46e129800f81";
fsType = "ext4"; fsType = "ext4";
@ -50,6 +55,7 @@
]; ];
boot.loader.grub.device = "/dev/sda"; boot.loader.grub.device = "/dev/sda";
boot.loader.grub.useOSProber = true;
networking.hostName = "imalison-home"; networking.hostName = "imalison-home";
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;