Compare commits

..

No commits in common. "a94f2615ef8ce2e71e674e17cc8fed4072a18f46" and "eba2ffcdcd98efb3c0af64a475b7302f5002b135" have entirely different histories.

3 changed files with 7 additions and 45 deletions

View File

@ -6,41 +6,16 @@
}: { }: {
imports = [./waybar.nix ./tile.nix]; imports = [./waybar.nix ./tile.nix];
home.packages = with pkgs; [ home.packages = with pkgs; [
hyprlock
hyprpaper
iio-hyprland iio-hyprland
batsignal
jq #iio-hyprland needs this jq #iio-hyprland needs this
]; ];
programs = {
hyprlock.enable = true;
};
services = { services = {
hypridle.enable=true;
hyprpaper.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 = { wayland.windowManager.hyprland = {

View File

@ -4,25 +4,12 @@
inputs, inputs,
... ...
}: { }: {
services = { services = {mako = {enable = true;};};
mako = {
enable = true;
defaultTimeout = 4000;
};
};
programs = { programs = {
alacritty = {enable = true;}; alacritty = {enable = true;};
wofi = {enable = true;}; wofi = {enable = true;};
zathura = {enable = true;}; zathura = {enable = true;};
mpv = {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 stylix.targets.wofi.enable = true; #this dosnt follow auto enable for some reson
} }