feat(dotfiles): Begin controlling various dotfiles from Nix
Moves my i3 configuration into a nix derivation called 'tazjins-dotfiles'. A good step towards fully declarative system configuration!
This commit is contained in:
parent
a8a9bf1300
commit
7fe75e0138
5 changed files with 200 additions and 2 deletions
|
|
@ -10,7 +10,11 @@ in {
|
|||
services.xserver.xkbOptions = "caps:super, grp:shifts_toggle";
|
||||
|
||||
# configure desktop environment:
|
||||
services.xserver.windowManager.i3.enable = true;
|
||||
services.xserver.windowManager.i3 = {
|
||||
enable = true;
|
||||
configFile = "/etc/i3/config";
|
||||
};
|
||||
|
||||
services.compton.enable = true;
|
||||
services.compton.backend = "xrender"; # this should be the default!
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue