This commit is contained in:
Miguel Palhas
2025-03-25 09:57:12 +00:00
parent 3579707156
commit ee45f05948
7 changed files with 19 additions and 57 deletions
-11
View File
@@ -1,11 +0,0 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
gnome-shell
];
environment.variables = {
GDK_SCALE = "2";
GDK_DPI_SCALE = "1.5";
};
}
+1 -3
View File
@@ -2,7 +2,6 @@
let
tuigreet = "${pkgs.greetd.tuigreet}/bin/tuigreet";
hyprland-session = "${pkgs.hyprland}/share/wayland-sessions";
gnome-shell = "${pkgs.gnome-shell}/bin/gnome-shell";
in
{
programs.hyprland.enable = true;
@@ -14,7 +13,7 @@ in
enable = true;
settings = {
default_session = {
command = "${tuigreet} --time --remember --remember-session --sessions ${hyprland-session},${gnome-shell}";
command = "${tuigreet} --time --remember --remember-session --sessions ${hyprland-session}";
user = "greeter";
};
};
@@ -24,5 +23,4 @@ in
substituters = [ "https://hyprland.cachix.org" ];
trusted-public-keys = [ "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" ];
};
}