Compare commits
No commits in common. "583696f6f0a0855a60a8b43707702bca89787c75" and "72d7d613d1cc6e9374a7963677ec5e71b6c201a0" have entirely different histories.
583696f6f0
...
72d7d613d1
|
@ -127,10 +127,7 @@ with lib; {
|
||||||
synology-drive-client
|
synology-drive-client
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
programs.chromium.enable = true;
|
||||||
chromium.enable = true;
|
|
||||||
nix-ld.enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
home-manager.users.moritz = {
|
home-manager.users.moritz = {
|
||||||
services.nextcloud-client = {
|
services.nextcloud-client = {
|
||||||
|
|
|
@ -6,10 +6,6 @@
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.my.programs.hyprland;
|
|
||||||
|
|
||||||
boolToYesNo = bool: if bool then "yes" else "no";
|
|
||||||
|
|
||||||
mkRule = rule: windowRegexes: "windowrulev2 = ${rule},${concatStringsSep "," windowRegexes}";
|
mkRule = rule: windowRegexes: "windowrulev2 = ${rule},${concatStringsSep "," windowRegexes}";
|
||||||
mkRules = rules: windowRegexes: concatStringsSep "\n" (map (flip mkRule windowRegexes) rules);
|
mkRules = rules: windowRegexes: concatStringsSep "\n" (map (flip mkRule windowRegexes) rules);
|
||||||
in
|
in
|
||||||
|
@ -59,12 +55,12 @@ in
|
||||||
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
||||||
|
|
||||||
rounding = 3
|
rounding = 3
|
||||||
blur = ${boolToYesNo cfg.blur}
|
blur = yes
|
||||||
blur_size = 3
|
blur_size = 3
|
||||||
blur_passes = 3
|
blur_passes = 3
|
||||||
blur_new_optimizations = on
|
blur_new_optimizations = on
|
||||||
|
|
||||||
drop_shadow = ${boolToYesNo cfg.shadows}
|
drop_shadow = yes
|
||||||
shadow_range = 10
|
shadow_range = 10
|
||||||
shadow_render_power = 2
|
shadow_render_power = 2
|
||||||
|
|
||||||
|
@ -113,19 +109,17 @@ in
|
||||||
# windowrulev2 = float,class:^(kitty)$,title:^(kitty)$
|
# windowrulev2 = float,class:^(kitty)$,title:^(kitty)$
|
||||||
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
|
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
|
||||||
|
|
||||||
${optionalString cfg.blur ''
|
|
||||||
# Kitty
|
# Kitty
|
||||||
windowrulev2 = opacity 0.95 0.95, class:^kitty$
|
windowrulev2 = opacity 0.95 0.95, class:^kitty$
|
||||||
|
|
||||||
# Rofi
|
|
||||||
${mkRules ["float" "opacity 0.85 0.85" "noborder"] ["class:^([rR]ofi)$"]}
|
|
||||||
|
|
||||||
windowrulev2 = opacity 0.85 0.85, floating:1
|
windowrulev2 = opacity 0.85 0.85, floating:1
|
||||||
''}
|
|
||||||
|
|
||||||
# Firefox Sharing Indicator
|
# Firefox Sharing Indicator
|
||||||
${mkRules ["float" "move 49% 40" "noborder"] ["title:^(.*Sharing Indicator)$"]}
|
${mkRules ["float" "move 49% 40" "noborder"] ["title:^(.*Sharing Indicator)$"]}
|
||||||
|
|
||||||
|
# Rofi
|
||||||
|
${mkRules ["float" "opacity 0.85 0.85" "noborder"] ["class:^([rR]ofi)$"]}
|
||||||
|
|
||||||
# Emacs
|
# Emacs
|
||||||
windowrulev2 = opaque, class:^emacs$
|
windowrulev2 = opaque, class:^emacs$
|
||||||
|
|
||||||
|
|
|
@ -15,16 +15,6 @@ in
|
||||||
options.my.programs.hyprland = {
|
options.my.programs.hyprland = {
|
||||||
enable = mkEnableOption "hyprland";
|
enable = mkEnableOption "hyprland";
|
||||||
nvidiaSupport = mkEnableOption "enable nvidia Support";
|
nvidiaSupport = mkEnableOption "enable nvidia Support";
|
||||||
blur = mkOption {
|
|
||||||
type = types.bool;
|
|
||||||
description = "enable window blurring";
|
|
||||||
default = true;
|
|
||||||
};
|
|
||||||
shadows = mkOption {
|
|
||||||
type = types.bool;
|
|
||||||
description = "enable window shadows";
|
|
||||||
default = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
@ -145,7 +135,6 @@ in
|
||||||
# only consider graphical-session.target started when hyprland-sesstion.target is reached
|
# only consider graphical-session.target started when hyprland-sesstion.target is reached
|
||||||
systemd.user.targets.hyprland-session = {
|
systemd.user.targets.hyprland-session = {
|
||||||
wantedBy = [ "graphical-session.target" ];
|
wantedBy = [ "graphical-session.target" ];
|
||||||
before = [ "graphical-session.target" ];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue