Switched Blackbird to Phosh

This commit is contained in:
2024-09-12 09:43:00 -03:00
parent dc8682264c
commit 97d2c70124
3 changed files with 10 additions and 2 deletions

View File

@@ -143,7 +143,6 @@
./home
./home/shell
./home/applications
./home/desktops/gnome
];
};
}

View File

@@ -19,7 +19,7 @@ in {
../../modules/containers.nix
../../modules/virtualization.nix
../../modules/harden.nix
../../modules/gnome.nix
../../modules/phosh.nix
#../../modules/waydroid.nix
];

9
modules/phosh.nix Normal file
View File

@@ -0,0 +1,9 @@
{...}: {
services.xserver.desktopManager.phosh = {
enable = true;
user = "panotaka";
group = "users";
# for better compatibility with x11 applications
phocConfig.xwayland = "immediate";
};
}