Update kde-stuff with changes from main #5

Merged
Toast merged 27 commits from main into kde-stuff 2023-07-12 21:27:49 +02:00
Showing only changes of commit 6e6fa9c599 - Show all commits

View file

@ -40,6 +40,19 @@
fsType = "vfat";
};
/*
Mount the root subvolume of the SSD
This is helpful for getting things from
my old Arch install, as well as for running btdu
*/
fileSystems = {
"/mnt/ssd" = {
device = config.fileSystems."/".device;
fsType = config.fileSystems."/".fsType;
options = [ "subvolid=5" "ro" ];
};
};
swapDevices = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";