mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-20 00:03:45 +01:00
feat: aqua - mount usb storage
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
{
|
||||
mylib,
|
||||
myvars,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
#############################################################
|
||||
@@ -25,6 +26,7 @@ in {
|
||||
"exfat"
|
||||
];
|
||||
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
boot.kernelModules = ["kvm-amd"];
|
||||
boot.extraModprobeConfig = "options kvm_amd nested=1"; # for amd cpu
|
||||
|
||||
|
||||
12
hosts/idols-aquamarine/filesystems.nix
Normal file
12
hosts/idols-aquamarine/filesystems.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
fileSystems."/data/downloads" = {
|
||||
device = "/dev/disk/by-label/Downloads";
|
||||
fsType = "ntfs-3g";
|
||||
options = ["rw" "uid=1000"];
|
||||
};
|
||||
fileSystems."/data/games" = {
|
||||
device = "/dev/disk/by-label/Games";
|
||||
fsType = "ntfs-3g";
|
||||
options = ["rw" "uid=1000"];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user