Add gitwatch

This commit is contained in:
2026-01-05 06:38:17 +01:00
parent 9d5b8eff9c
commit e48e85efca
8 changed files with 100 additions and 23 deletions

View File

@@ -1,10 +1,10 @@
{ inputs, pkgs, lib, config, ... }:
{ inputs, pkgs, lib, nixosConfig, ... }:
let
cfg = config.my.desktop.hyprland;
cfg = nixosConfig.my.desktop;
in
{
programs.kitty.enable = config.my.desktop.enable; # required for the default Hyprland config
wayland.windowManager.hyprland = lib.mkIf cfg.enable {
programs.kitty.enable = cfg.enable; # required for the default Hyprland config
wayland.windowManager.hyprland = lib.mkIf cfg.hyprland.enable {
enable = true;
# set the flake package
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;