33 lines
828 B
Nix
33 lines
828 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
boot.plymouth.enable = true;
|
|
nixpkgs.config = {
|
|
mumble.speechdSupport = true;
|
|
allowUnfree = true;
|
|
};
|
|
# boot.plymouth.splashBeforeUnlock = true;
|
|
environment.systemPackages = 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";
|
|
};
|
|
}
|