wlogout and swaylock. Moved starship to home-manager and styled with catppuccin. Changed some font colours for better contrast. Transparency on terminals. swww for animated wallpapers. Starter template for creating new files. Styled waybar from catppuccin template, changed some icons.

This commit is contained in:
2024-12-28 20:25:37 +01:00
parent a9ad4efed3
commit 8e91b0ca78
17 changed files with 402 additions and 69 deletions

28
audio.nix Normal file
View File

@ -0,0 +1,28 @@
{
pkgs,
...
}:
{
environment.systemPackages = with pkgs; [
wireplumber
playerctl # Interaction with audioplayers and browsers
pavucontrol # GUI
];
hardware.pulseaudio.enable = false; # Use Pipewire, the modern sound subsystem
security.rtkit.enable = true; # Enable RealtimeKit for audio purposes
services.pipewire = {
enable = true;
alsa = {
enable = true;
support32Bit = true;
};
pulse.enable = true;
# Uncomment the following line if you want to use JACK applications
# jack.enable = true;
};
}