Files
dotfiles/modules/desktop.nix

29 lines
503 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
openrgb-with-all-plugins
phoronix-test-suite
];
# Automaticaly mount C drive
fileSystems."/mnt/c" = {
device = "/dev/nvme1n1p4";
fsType = "ntfs-3g";
options = [
"rw"
"noatime"
"uid=1000"
"nofail"
];
};
# Automatically mount E drive
# fileSystems."/mnt/e" = {
# device = "/dev/sda2";
# fsType = "ntfs-3g";
# options = [ "rw" "noatime" "uid=1000" "nofail" ];
# };
}