Compare commits

...

2 Commits

Author SHA1 Message Date
89d194146e
plasma: add xdg-desktop-portal-gtk 2024-02-28 12:11:47 -05:00
0ed22a1988
nullbox: compress all btrfs mounts 2024-02-28 11:28:25 -05:00
2 changed files with 18 additions and 4 deletions

View File

@ -14,10 +14,21 @@
config = { config = {
fileSystems."/ntfs" = { fileSystems = lib.mkMerge [
fsType = "ntfs-3g"; {
device = "/dev/disk/by-uuid/6AC23F0FC23EDF4F"; "/ntfs" = {
}; fsType = "ntfs-3g";
device = "/dev/disk/by-uuid/6AC23F0FC23EDF4F";
};
"/.btrfsroot" = {
options = [ "subvol=/" ];
};
}
(lib.genAttrs [ "/.btrfsroot" "/" "/home" ] ( fs: {
options = [ "compress=zstd" ];
}))
];
# nixfiles # nixfiles
nixfiles = { nixfiles = {

View File

@ -23,6 +23,9 @@ in
programs.kdeconnect.enable = mkDefault true; programs.kdeconnect.enable = mkDefault true;
nixfiles.meta.wayland = true; nixfiles.meta.wayland = true;
xdg.portal.extraPortals = [
pkgs.xdg-desktop-portal-gtk
];
systemd.user = { systemd.user = {
services.restart-xdg-desktop-portal-kde = { services.restart-xdg-desktop-portal-kde = {
enable = true; enable = true;