27 lines
486 B
Nix
27 lines
486 B
Nix
{ pkgs, ... }: {
|
|
|
|
imports = [
|
|
# ./nvidia.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
openrgb-with-all-plugins
|
|
phoronix-test-suite
|
|
];
|
|
|
|
# Automaticaly mount C drive
|
|
fileSystems."/mnt/c" = {
|
|
device = "/dev/nvme0n1p4";
|
|
fsType = "ntfs-3g";
|
|
options = [ "rw" "noatime" "uid=1000" ];
|
|
};
|
|
|
|
# Automatically mount E drive
|
|
fileSystems."/mnt/e" = {
|
|
device = "/dev/sda2";
|
|
fsType = "ntfs-3g";
|
|
options = [ "rw" "noatime" "uid=1000" ];
|
|
};
|
|
|
|
}
|