summaryrefslogtreecommitdiff
path: root/exwm.nix
diff options
context:
space:
mode:
authorLeonardo Santiago <[email protected]>2024-09-12 21:44:46 -0300
committerLeonardo Santiago <[email protected]>2024-09-12 23:20:51 -0300
commit62100c9265a4de389d1ea8060cbddddacde161a7 (patch)
tree811ca1c5803ccdb2670f0c239214bc0dc30f57c7 /exwm.nix
parentf9ddec7952709d7b5d5d79deadca07c573510d49 (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.nix25
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";
- };
- };
- };
-}