feat: changes to kanshi nvidia hyprland

Bumped flake inputs to latest
This commit is contained in:
Zhongheng Liu 2024-09-19 10:24:14 +03:00
commit 09e506c6a6
No known key found for this signature in database
14 changed files with 252 additions and 128 deletions

View file

@ -15,6 +15,7 @@
displayScale = mkOption {type = int;};
myAutostartCommands = mkOption {type = listOf str;};
myConfigLocation = mkOption {type = str;};
desktopFontFullName = mkOption {type = str;};
};
# Default values for this configuration
@ -30,6 +31,12 @@
"${pkgs.udiskie}/bin/udiskie"
"${pkgs.pa-notify}/bin/pa-notify"
];
specialisation."powersave".configuration = {
myAutostartCommands = [
"${pkgs.brightnessctl}/bin/brightnessctl s 64"
];
};
myConfigLocation = "/home/${myUserName}/nix-conf";
desktopFontFullName = "BlexMono Nerd Font";
};
}