haccfiles/desktop/default.nix

36 lines
875 B
Nix
Raw Normal View History

2020-11-27 20:56:20 +00:00
{ config, lib, pkgs, ... }:
{
boot.plymouth.enable = true;
nixpkgs.config = {
mumble.speechdSupport = true;
allowUnfree = true;
};
# boot.plymouth.splashBeforeUnlock = true;
2021-08-19 18:32:17 +00:00
environment.systemPackages = with pkgs; [
pulsemixer pavucontrol
2021-12-25 17:56:29 +00:00
firefox kitty j4-dmenu-desktop bemenu
breeze-qt5 mako
mpv youtube-dl
wl-clipboard mumble
xdg_utils
slurp grim libnotify
_1password-gui
2021-12-25 17:56:29 +00:00
gimp
# gnome3.nautilus
2021-12-25 17:56:29 +00:00
] ++ (with pkgs; [ alacritty picom feh copyq polybar cinnamon.nemo rofi arandr notepadqq nomacs imv gthumb ]);
2020-11-27 20:56:20 +00:00
sound.enable = true;
time.timeZone = "Europe/Berlin";
2020-12-01 20:33:36 +00:00
hardware.pulseaudio = {
enable = true;
package = pkgs.pulseaudioFull;
};
2020-11-27 20:56:20 +00:00
networking.useDHCP = lib.mkDefault true;
hardware.opengl.enable = true;
services.xserver = {
windowManager.bspwm.enable = true;
layout = "de";
};
2020-11-27 20:56:20 +00:00
}