Regenerated
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
#packages
|
||||
bluez
|
||||
blueman
|
||||
pavucontrol
|
||||
usbutils
|
||||
todoist
|
||||
brave
|
||||
|
||||
@@ -71,10 +71,21 @@ in
|
||||
description = "Dynamic wallpapers per workspace for Hyprland";
|
||||
after = [ "graphical-session.target" ];
|
||||
wants = [ "graphical-session.target" ];
|
||||
|
||||
serviceConfig = {
|
||||
Type = "simple";
|
||||
ExecStart = "${homeDir}/Wallpapers/scripts/workspace-wallpapers.sh";
|
||||
Restart = "always";
|
||||
Restart = "on-failure";
|
||||
RestartSec = 5;
|
||||
WorkingDirectory = homeDir;
|
||||
Environment = [
|
||||
"XDG_RUNTIME_DIR=${config.xdg.runtimeDir}"
|
||||
"HYPRLAND_INSTANCE_SIGNATURE=${builtins.getEnv "HYPRLAND_INSTANCE_SIGNATURE"}"
|
||||
"WAYLAND_DISPLAY=wayland-1"
|
||||
"PATH=/run/current-system/sw/bin:/usr/bin:/bin"
|
||||
];
|
||||
};
|
||||
|
||||
wantedBy = [ "default.target" ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
{ lib, config, pkgs, ... }:
|
||||
|
||||
{
|
||||
############################
|
||||
# Audio system
|
||||
############################
|
||||
environment.systemPackages = with pkgs; [
|
||||
pulseaudio # PulseAudio daemon
|
||||
pavucontrol # GUI mixer
|
||||
pamixer # CLI mixer
|
||||
];
|
||||
|
||||
############################
|
||||
# Enable PulseAudio system-wide
|
||||
############################
|
||||
sound.enable = true;
|
||||
hardware.pulseaudio.enable = true;
|
||||
|
||||
############################
|
||||
# Optional: enable ALSA support
|
||||
############################
|
||||
hardware.pulseaudio.support32Bit = true; # for 32-bit apps
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
{ lib, config, pkgs, ... }:
|
||||
|
||||
{
|
||||
############################
|
||||
# Printing system
|
||||
############################
|
||||
services.printing.enable = true; # enable CUPS printing service
|
||||
services.printing.drivers = [ "all" ]; # include all drivers (optional)
|
||||
|
||||
############################
|
||||
# System packages for GUI management
|
||||
############################
|
||||
environment.systemPackages = with pkgs; [
|
||||
system-config-printer # GUI to manage printers
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user