Compare commits
2 Commits
1a168bc1b5
...
89d194146e
Author | SHA1 | Date | |
---|---|---|---|
89d194146e | |||
0ed22a1988 |
@ -14,10 +14,21 @@
|
||||
|
||||
config = {
|
||||
|
||||
fileSystems."/ntfs" = {
|
||||
fsType = "ntfs-3g";
|
||||
device = "/dev/disk/by-uuid/6AC23F0FC23EDF4F";
|
||||
};
|
||||
fileSystems = lib.mkMerge [
|
||||
{
|
||||
"/ntfs" = {
|
||||
fsType = "ntfs-3g";
|
||||
device = "/dev/disk/by-uuid/6AC23F0FC23EDF4F";
|
||||
};
|
||||
"/.btrfsroot" = {
|
||||
options = [ "subvol=/" ];
|
||||
};
|
||||
}
|
||||
|
||||
(lib.genAttrs [ "/.btrfsroot" "/" "/home" ] ( fs: {
|
||||
options = [ "compress=zstd" ];
|
||||
}))
|
||||
];
|
||||
|
||||
# nixfiles
|
||||
nixfiles = {
|
||||
|
@ -23,6 +23,9 @@ in
|
||||
programs.kdeconnect.enable = mkDefault true;
|
||||
nixfiles.meta.wayland = true;
|
||||
|
||||
xdg.portal.extraPortals = [
|
||||
pkgs.xdg-desktop-portal-gtk
|
||||
];
|
||||
systemd.user = {
|
||||
services.restart-xdg-desktop-portal-kde = {
|
||||
enable = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user