diff options
author | Leonardo Santiago <[email protected]> | 2024-09-12 21:44:46 -0300 |
---|---|---|
committer | Leonardo Santiago <[email protected]> | 2024-09-12 23:20:51 -0300 |
commit | 62100c9265a4de389d1ea8060cbddddacde161a7 (patch) | |
tree | 811ca1c5803ccdb2670f0c239214bc0dc30f57c7 /exwm.nix | |
parent | f9ddec7952709d7b5d5d79deadca07c573510d49 (diff) |
split users/leonardo.nix into modules with options
in order to be able to deploy just a few of those to iori.nix
Diffstat (limited to 'exwm.nix')
-rw-r--r-- | exwm.nix | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/exwm.nix b/exwm.nix deleted file mode 100644 index df8e306..0000000 --- a/exwm.nix +++ /dev/null @@ -1,25 +0,0 @@ -{pkgs, inputs, system, ...}: -{ - services.xserver = { - enable = true; - updateDbusEnvironment = true; - windowManager.session = pkgs.lib.singleton { - name = "exwm"; - start = '' - dbus-launch ${inputs.emacs.packages.x86_64-linux.default}/bin/emacs -mm - ''; - }; - desktopManager = { - default = "none"; - }; - displayManager = { - lightdm = { - enable = true; - }; - autoLogin = { - enable = true; - user = "leonardo"; - }; - }; - }; -} |