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
|
let
|
||||||
|
inherit (lib)
|
||||||
|
mkIf
|
||||||
|
mkOption
|
||||||
|
;
|
||||||
cfg = config.modules.system.desktop.hyprland;
|
cfg = config.modules.system.desktop.hyprland;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.modules.system.desktop.hyprland = {
|
options.modules.system.desktop.hyprland = {
|
||||||
enable = lib.mkOption {
|
enable = mkOption {
|
||||||
default = false;
|
default = false;
|
||||||
example = true;
|
example = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
programs.hyprland = {
|
programs.hyprland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# withUWSM = true;
|
# withUWSM = true;
|
||||||
@ -28,10 +32,12 @@ in
|
|||||||
|
|
||||||
user.packages = with pkgs.unstable; [
|
user.packages = with pkgs.unstable; [
|
||||||
anyrun
|
anyrun
|
||||||
|
clipse
|
||||||
hyprpaper
|
hyprpaper
|
||||||
|
kitty
|
||||||
mpv
|
mpv
|
||||||
walker
|
|
||||||
waybar
|
waybar
|
||||||
|
wl-clipboard
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user