aboutsummaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
Diffstat (limited to 'nixos')
-rw-r--r--nixos/configuration.nix5
-rw-r--r--nixos/greetd.nix2
2 files changed, 5 insertions, 2 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix
index 8eae995..68d1365 100644
--- a/nixos/configuration.nix
+++ b/nixos/configuration.nix
@@ -86,7 +86,10 @@
serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
};
programs = {
- hyprland.enable = true; # enables Hyprland DM.
+ hyprland = {
+ enable = true; # enables Hyprland DM.
+ withUWSM = true; # NEW Universal Wayland Session Manager
+ };
steam = {
enable = true;
remotePlay.openFirewall =
diff --git a/nixos/greetd.nix b/nixos/greetd.nix
index d5d0a07..7222c85 100644
--- a/nixos/greetd.nix
+++ b/nixos/greetd.nix
@@ -9,7 +9,7 @@ in
enable = true;
settings = {
default_session = {
- command = "${tuigreet} --time --remember --cmd Hyprland";
+ command = "${tuigreet} --time --remember";
user = "greeter";
};
};