summaryrefslogtreecommitdiff
path: root/exwm.nix
diff options
context:
space:
mode:
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";
- };
- };
- };
-}