diff options
Diffstat (limited to 'nixos/wayfire.nix')
-rw-r--r-- | nixos/wayfire.nix | 40 |
1 files changed, 4 insertions, 36 deletions
diff --git a/nixos/wayfire.nix b/nixos/wayfire.nix index 2feeefd..05c3fbd 100644 --- a/nixos/wayfire.nix +++ b/nixos/wayfire.nix @@ -1,46 +1,14 @@ + { config, lib, pkgs, modulesPath, ... }: { imports = [ ./wmonly.nix ]; - services.xserver.displayManager.sx.enable = true; - - security.pam.services.swaylock = {}; - - programs.sway = { - enable = true; - #package = pkgs.swayfx; - wrapperFeatures.gtk = true; - wrapperFeatures.base = true; - extraPackages = with pkgs; [ - glib - ]; - }; - qt = { - enable = true; - platformTheme = "gnome"; - style = "adwaita"; - }; - environment.systemPackages = with pkgs; [ # ---- wayfire ---- - #wayfire-with-plugins - #wayfirePlugins.wcm - #wayfirePlugins.wf-shell - - # ---- sway ---- - #swayfx - swaybg - bemenu - swayimg - - # ---- common utils ---- - xdg-desktop-portal-wlr - waybar - alacritty - swaylock - wdisplays - grim + wayfire-with-plugins + wayfirePlugins.wcm + wayfirePlugins.wf-shell ]; } |