summaryrefslogtreecommitdiff
path: root/modules/wm.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/wm.nix')
-rw-r--r--modules/wm.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/modules/wm.nix b/modules/wm.nix
deleted file mode 100644
index 327ac41..0000000
--- a/modules/wm.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ pkgs, ... }:
-
-{
- environment.sessionVariables.NIXOS_OZONE_WL = "1";
-
- environment.systemPackages = with pkgs; [
- networkmanagerapplet
-
- polkit_gnome
-
- libnotify
- libappindicator
-
- inotify-tools
- ];
-
- systemd = {
- user.services.polkit-gnome-authentication-agent-1 = {
- description = "polkit-gnome-authentication-agent-1";
- wantedBy = [ "graphical-session.target" ];
- wants = [ "graphical-session.target" ];
- after = [ "graphical-session.target" ];
- serviceConfig = {
- Type = "simple";
- ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
- Restart = "on-failure";
- RestartSec = 1;
- TimeoutStopSec = 10;
- };
- };
- };
-}