mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-22 10:14:25 +01:00
Complete overhaul
This commit is contained in:
commit
d30d11566d
38 changed files with 1373 additions and 0 deletions
18
modules/system/de.nix
Normal file
18
modules/system/de.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
options.myConfig.de.qtile.enable = lib.mkEnableOption "";
|
||||
|
||||
config = lib.mkIf config.myConfig.de.qtile.enable {
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
|
||||
windowManager.qtile.enable = true;
|
||||
desktopManager.wallpaper.mode = "fill";
|
||||
};
|
||||
|
||||
myConfig.x-input.enable = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue