1
Fork 0
nixos-system-config/wm/xmonad.nix
caem eff6860aa2 Replace legacy configuration with the new
The old configuration is still available in the legacy branch of this
repository. It contains the mostly server oriented configuration while
this new configuration is aimed at desktop usage.
2024-04-04 01:41:19 +02:00

29 lines
465 B
Nix

{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
xmobar
flameshot
rofi
feh
kitty
pavucontrol
picom
];
services.xserver = {
enable = true;
xkb = {
layout = "de";
options = "eurosign:e";
};
windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
};
};
# Todo: Get gnome-keyring working properly
services.gnome.gnome-keyring.enable = true;
}