forked from hacc/haccfiles
43d36bb3d7
I am no longer comfortable with putting resources into this project and therefore request to be removed from all infrastructure. I am still happy to help out with software I set up, but I will no longer actively maintain any services. As far as possible, I will remove myself from all access groups or other privileged positions related to this project. Essentially, I'm stepping down as a maintainer. I still reserve the right to make changes via the established change processes (Merge Requests as well as Issues in the meta-repositories), but I will no longer make direct changes to infrastructure without going through those review processes.
33 lines
830 B
Nix
33 lines
830 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
boot.plymouth.enable = true;
|
|
nixpkgs.config = {
|
|
mumble.speechdSupport = true;
|
|
allowUnfree = true;
|
|
};
|
|
# boot.plymouth.splashBeforeUnlock = true;
|
|
users.users.schweby.packages = with pkgs; [
|
|
pulsemixer pavucontrol
|
|
firefox git kitty j4-dmenu-desktop bemenu
|
|
breeze-qt5 mako
|
|
mpv youtube-dl
|
|
wl-clipboard mumble
|
|
xdg_utils
|
|
slurp grim libnotify
|
|
_1password-gui
|
|
# gnome3.nautilus
|
|
] ++ (with pkgs; [ alacritty picom feh copyq polybar cinnamon.nemo rofi arandr notepadqq nomacs bat ]);
|
|
|
|
sound.enable = true;
|
|
hardware.pulseaudio = {
|
|
enable = true;
|
|
package = pkgs.pulseaudioFull;
|
|
};
|
|
networking.useDHCP = lib.mkDefault true;
|
|
hardware.opengl.enable = true;
|
|
services.xserver = {
|
|
windowManager.bspwm.enable = true;
|
|
layout = "de";
|
|
};
|
|
}
|