eff6860aa2
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.
29 lines
465 B
Nix
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;
|
|
}
|