setup jade

This commit is contained in:
♥ Minnie ♥ 2023-05-02 08:52:44 +08:00
parent fb35749e62
commit 296b80ec16
14 changed files with 262 additions and 162 deletions

View file

@ -0,0 +1,20 @@
{ inputs, outputs, lib, config, pkgs, ... }:
{
imports = [
./xmonad
];
home.packages = with pkgs; [
dmenu
feh
wezterm
];
xdg.configFile = {
wezterm = { source = ./wezterm; recursive = true; };
};
home.file.".xinitrc".source = ./xinitrc;
}