]> gitweb.ps.run Git - flake_thinkpad/commitdiff
(no commit message)
authorPatrick <patrick.schoenberger@posteo.de>
Fri, 24 Oct 2025 09:23:25 +0000 (11:23 +0200)
committerPatrick <patrick.schoenberger@posteo.de>
Fri, 24 Oct 2025 09:23:25 +0000 (11:23 +0200)
configuration.nix

index ae7d07e82a2d789ef5e8dd09d12dd5a4a7ad6fa3..73a06b4f4f0eac2440db1ca625042d9d103ac753 100644 (file)
@@ -183,15 +183,15 @@ in
 
   systemd.user.services.plasma-i3wm = {
     wantedBy = [ "plasma-workspace-x11.target" ];
+    before = [ "plasma-workspace-x11.target" ];
     description = "Launch Plasma with i3";
-    #before = [ "plasma-workspace-x11.target" ];
     environment = lib.mkForce {};
     serviceConfig = {
       ExecStart = "${pkgs.i3}/bin/i3";
       Restart = "on-failure";
     };
   };
-  systemd.user.services.plasma-workspace-x11.after = [ "plasma-i3wm.target" ];
+  systemd.user.services.plasma-workspace-x11.after = [ "plasma-i3wm.target" ];
   systemd.user.services.plasma-kwin_x11.enable = false;
 
   services.autorandr = {
@@ -360,6 +360,7 @@ in
     };
     users = {
       "ps" = import ./home-ps.nix;
+      "root" = { home.stateVersion = "24.05"; };
     };
     sharedModules = [
       (import ./home-common.nix)