started xmonad config

This commit is contained in:
2024-08-13 20:58:32 +09:00
parent 043c527b64
commit 3964424b46
5 changed files with 400 additions and 1 deletions

17
user/wm/xmonad/xmonad.nix Normal file
View File

@@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
xmobar
dunst
networkmanagerapplet
rofi
feh
pavucontrol
xorg.xkill
xdg-utils
xdg-desktop-portal
xdg-desktop-portal-gtk
];
home.file.".config/xmonad/xmonad.hs".source = ./xmonad.hs;
}