hyprland: add clipse, kitty
All checks were successful
Check flake / build-amd64-linux (push) Successful in 4m16s
All checks were successful
Check flake / build-amd64-linux (push) Successful in 4m16s
This commit is contained in:
parent
f2a040534b
commit
70a8af6395
@ -6,17 +6,21 @@
|
||||
}:
|
||||
|
||||
let
|
||||
inherit (lib)
|
||||
mkIf
|
||||
mkOption
|
||||
;
|
||||
cfg = config.modules.system.desktop.hyprland;
|
||||
in
|
||||
{
|
||||
options.modules.system.desktop.hyprland = {
|
||||
enable = lib.mkOption {
|
||||
enable = mkOption {
|
||||
default = false;
|
||||
example = true;
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
config = mkIf cfg.enable {
|
||||
programs.hyprland = {
|
||||
enable = true;
|
||||
# withUWSM = true;
|
||||
@ -28,10 +32,12 @@ in
|
||||
|
||||
user.packages = with pkgs.unstable; [
|
||||
anyrun
|
||||
clipse
|
||||
hyprpaper
|
||||
kitty
|
||||
mpv
|
||||
walker
|
||||
waybar
|
||||
wl-clipboard
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
Loading…
x
Reference in New Issue
Block a user