This commit is contained in:
Lilith 2025-03-12 14:42:18 +01:00
parent f339b338a3
commit 701c9d71f0
Signed by: lilith
GPG key ID: 8712A0F317C37175
5 changed files with 44 additions and 14 deletions

View file

@ -6,13 +6,15 @@
home-manager.backupFileExtension = "bak";
home-manager.users."lilith" = {
imports = [
ags.homeManagerModules.default
# ags.homeManagerModules.default
sops-nix.homeManagerModules.sops
./ags # ToDo: get codin :3
# ./ags # ToDo: get codin :3
./hyprland
./rofi.nix
./dunst.nix
./matshell.nix
./env.nix
./alacritty.nix

View file

@ -6,9 +6,7 @@
# ./utils.nix
];
wayland.windowManager = let
hyprDefaults = {
wayland.windowManager.hyprland = {
enable = true;
xwayland.enable = true;
@ -22,6 +20,8 @@
"HYPRCURSOR_THEME,rose-pine-hyprcursor"
];
xwayland.force_zero_scaling = true;
monitor = [
",preferred,1"
];
@ -77,9 +77,11 @@
passes = 1;
};
drop_shadow = true;
shadow_range = 4;
shadow_render_power = 3;
shadow = {
enabled = true;
range = 4;
render_power = 3;
};
};
animations = {
@ -126,7 +128,6 @@
"$mainMod, P, exec, if (( $(pgrep keepassxc -c) < 2 )); then keepassxc; fi"
"$mainMod, O, togglespecialworkspace, chatgpt"
"$mainMod, O, exec, [workspace special:chatgpt] pgrep firefox | xargs ps -fp | grep -- '-P ChatGPT --url chat.openai.com' || firefox -P ChatGPT --url chat.openai.com"
", print, exec, hyprshot -m region -o /home/lilith/sync/screenshots -z"
"CTRL, print, exec, hyprshot -m output -o /home/lilith/sync/screenshots -z"
@ -175,7 +176,4 @@
];
};
};
in {
hyprland = hyprDefaults;
};
}

7
home/matshell.nix Normal file
View file

@ -0,0 +1,7 @@
{ matshell, ...}: {
imports = [ matshell.homeManagerModules.default ];
programs.ags = {
matshell.enable = true;
};
}