Compare commits
2 commits
5e35d0a91b
...
13bc30045c
| Author | SHA1 | Date | |
|---|---|---|---|
| 13bc30045c | |||
| bf65971d62 |
2 changed files with 21 additions and 0 deletions
|
|
@ -234,6 +234,26 @@
|
|||
crony.ollama.enable = true;
|
||||
crony.plasma.enable = true;
|
||||
|
||||
# Mount additional drive for games
|
||||
fileSystems."/mnt/games" = {
|
||||
device = "/dev/disk/by-uuid/f747508e-6b2f-474a-88cf-759a221cff46";
|
||||
fsType = "btrfs";
|
||||
options = [
|
||||
"compress=zstd"
|
||||
"noatime"
|
||||
];
|
||||
};
|
||||
|
||||
# Mount drives for backups
|
||||
fileSystems."/mnt/backup" = {
|
||||
device = "/dev/disk/by-uuid/3f2ab7ec-5b78-4686-b909-77fa6f4241b5";
|
||||
fsType = "btrfs";
|
||||
options = [
|
||||
"compress=zstd"
|
||||
"noatime"
|
||||
];
|
||||
};
|
||||
|
||||
# List packages installed in system profile
|
||||
environment.systemPackages = with pkgs; [
|
||||
neovim
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
nicotine-plus
|
||||
ventoy
|
||||
feather
|
||||
gparted
|
||||
];
|
||||
|
||||
# Install thunderbird
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue