Compare commits

...

2 Commits

Author SHA1 Message Date
k
a94f2615ef fixed formating isue 2025-01-23 12:40:03 -05:00
k
a754632a59 Added missing programs 2025-01-23 12:39:45 -05:00
3 changed files with 45 additions and 7 deletions

View File

@ -6,16 +6,41 @@
}: {
imports = [./waybar.nix ./tile.nix];
home.packages = with pkgs; [
hyprlock
hyprpaper
iio-hyprland
batsignal
jq #iio-hyprland needs this
];
programs = {
hyprlock.enable = true;
};
services = {
hypridle.enable=true;
hyprpaper.enable = true;
batsignal.enable = true;
hypridle = {
enable = true;
package = pkgs.hypridle;
settings = {
general = {
after_sleep_cmd = "hyprctl dispatch dpms on";
ignore_dbus_inhibit = false;
lock_cmd = "hyprlock";
};
listener = [
{
timeout = 900;
on-timeout = "hyprlock";
}
{
timeout = 1200;
on-timeout = "hyprctl dispatch dpms off";
on-resume = "hyprctl dispatch dpms on";
}
];
};
};
};
wayland.windowManager.hyprland = {

View File

@ -4,12 +4,25 @@
inputs,
...
}: {
services = {mako = {enable = true;};};
services = {
mako = {
enable = true;
defaultTimeout = 4000;
};
};
programs = {
alacritty = {enable = true;};
wofi = {enable = true;};
zathura = {enable = true;};
mpv = {enable = true;};
lf = {enable = true;};
};
home.packages = with pkgs; [
brightnessctl
pulsemixer
unzip
zip
swayimg
];
stylix.targets.wofi.enable = true; #this dosnt follow auto enable for some reson
}