diff options
| author | Aargh Rai <aargh.rai+git@gmail.com> | 2025-09-03 21:19:42 +0530 |
|---|---|---|
| committer | Aargh Rai <aargh.rai+git@gmail.com> | 2025-09-03 21:19:42 +0530 |
| commit | 36290a95cff8a7e910c1c0fbb4acc8596e670ba2 (patch) | |
| tree | 4878c50be831f8707cba8f0ac16753116cbe62a9 /services.nix | |
| parent | 8d144b97b06794f3f7006e236bd5b9debe0b7cf8 (diff) | |
hyprland!
Diffstat (limited to 'services.nix')
| -rw-r--r-- | services.nix | 45 |
1 files changed, 23 insertions, 22 deletions
diff --git a/services.nix b/services.nix index 1c85666..1197d42 100644 --- a/services.nix +++ b/services.nix @@ -1,8 +1,9 @@ { config, pkgs, ... }: { - services.xserver.enable = true; - services.xserver.displayManager.gdm.enable = true; - services.xserver.desktopManager.gnome.enable = true; + imports = + [ + ./desktop-environment.nix + ]; services.xserver.xkb = { layout = "us"; variant = ""; @@ -29,24 +30,24 @@ acceleration = "cuda"; }; services.kanata = { - enable = true; - keyboards = { - "keyboard".config = '' - (defsrc - grv 1 2 3 4 5 6 7 8 9 0 - = bspc - tab q w e r t y u i o p [ ] ret - caps a s d f g h j k l ; ' \ - lsft z x c v b n m , . / rsft - lctl lmet lalt spc ralt rmet rctl - ) - (deflayer qwerty - grv 1 2 3 4 5 6 7 8 9 0 - = bspc - tab q w e r t y u i o p [ ] ret - esc a s d f g h j k l ; ' \ - lsft z x c v b n m , . / rsft - lctl lmet lalt spc ralt rmet rctl - ) - ''; + enable = true; + keyboards = { + "keyboard".config = '' + (defsrc + grv 1 2 3 4 5 6 7 8 9 0 - = bspc + tab q w e r t y u i o p [ ] ret + caps a s d f g h j k l ; ' \ + lsft z x c v b n m , . / rsft + lctl lmet lalt spc ralt rmet rctl + ) + (deflayer qwerty + grv 1 2 3 4 5 6 7 8 9 0 - = bspc + tab q w e r t y u i o p [ ] ret + esc a s d f g h j k l ; ' \ + lsft z x c v b n m , . / rsft + lctl lmet lalt spc ralt rmet rctl + ) + ''; + }; }; -}; } |
