mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-22 10:14:25 +01:00
Enable widgets on per host basis
This commit is contained in:
parent
af5e9e85d7
commit
7e59fd1426
4 changed files with 54 additions and 16 deletions
|
|
@ -9,10 +9,22 @@ in {
|
|||
imports = [./qtile.nix];
|
||||
|
||||
options.myConfig.de = {
|
||||
theming.enable = lib.mkEnableOption "";
|
||||
|
||||
wallpaper = lib.mkOption {
|
||||
type = lib.types.path;
|
||||
};
|
||||
theming.enable = lib.mkEnableOption "";
|
||||
|
||||
widget = {
|
||||
backlight = {
|
||||
enable = lib.mkEnableOption "";
|
||||
device = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
};
|
||||
};
|
||||
battery.enable = lib.mkEnableOption "";
|
||||
};
|
||||
|
||||
tray = {
|
||||
syncthing.enable = lib.mkEnableOption "";
|
||||
networkmanager.enable = lib.mkEnableOption "";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue