Skip to content

Commit

Permalink
feat: switch back to hyprland
Browse files Browse the repository at this point in the history
Signed-off-by: Reputable2722 <[email protected]>
  • Loading branch information
Reputable2772 committed Oct 16, 2024
1 parent 69298df commit 39444ed
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
8 changes: 1 addition & 7 deletions Modules/System/hyprland.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ config, lib, ... }:
let
cfg = config.programs.hyprland;
inherit (lib.modules) mkMerge mkIf;
Expand All @@ -16,12 +16,6 @@ in
*/
programs.hyprland.systemd.setPath.enable = false;

xdg.portal = {
enable = true;
extraPortals = with pkgs; [ xdg-desktop-portal-gtk ];
xdgOpenUsePortal = true;
};

programs.xfconf.enable = true;
services.gvfs.enable = true;

Expand Down
8 changes: 4 additions & 4 deletions System/HP-Laptop/Packages/gnome.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ pkgs, ... }: {
services.xserver.enable = true;
services.xserver.desktopManager.gnome.enable = true;
services.xserver.displayManager.gdm.enable = true;
{ pkgs, lib, ... }: {
services.xserver.enable = lib.mkDefault false;
services.xserver.desktopManager.gnome.enable = false;
services.xserver.displayManager.gdm.enable = false;

environment.gnome.excludePackages = with pkgs; [
gnome-photos
Expand Down
2 changes: 1 addition & 1 deletion System/HP-Laptop/Packages/hyprland.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
programs.hyprland = {
enable = false;
enable = true;
xwayland.enable = true;
};
}

0 comments on commit 39444ed

Please sign in to comment.