Add gitwatch
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user