refactor home-manager
This commit is contained in:
parent
a48829bbe6
commit
caed1fc0d4
31 changed files with 243 additions and 270 deletions
33
home-manager/sajenim/features/desktop/jade/default.nix
Normal file
33
home-manager/sajenim/features/desktop/jade/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ inputs, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./picom.nix
|
||||
./rofi.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
feh
|
||||
xmobar
|
||||
unstable.wezterm
|
||||
];
|
||||
|
||||
home.file = {
|
||||
".local/share/fonts" = {
|
||||
recursive = true;
|
||||
source = "${inputs.self}/pkgs/patched-fonts";
|
||||
};
|
||||
".xinitrc".source = ./xinitrc;
|
||||
};
|
||||
|
||||
xdg.configFile = {
|
||||
wezterm = { source = ./wezterm/config; recursive = true; };
|
||||
};
|
||||
|
||||
xsession.windowManager.xmonad = {
|
||||
enable = true;
|
||||
enableContribAndExtras = true;
|
||||
config = "${inputs.self}/pkgs/xmonad-config/src/xmonad.hs";
|
||||
};
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue