Files
dotfiles/modules/desktop.nix
Kyren223 7bfd13f213 Renamed dekstop entry from whatsie to WasIstLos (forgot after I
switched), added inkscape to edit SVGs and removed all the junk from the
previous commit
2025-06-22 16:55:31 +03:00

27 lines
484 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/nvme1n1p4";
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" ];
};
}