rename desktop dir
This commit is contained in:
parent
6509a6d78f
commit
4527811bea
13 changed files with 1 additions and 1 deletions
30
home-manager/common/desktop/default.nix
Normal file
30
home-manager/common/desktop/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ inputs, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [ ];
|
||||
|
||||
nixpkgs.overlays = [
|
||||
(final: prev: {
|
||||
xmobar = inputs.xmobar-config.packages.${pkgs.system}.xmobar-config;
|
||||
})
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
dmenu
|
||||
feh
|
||||
unstable.wezterm
|
||||
xmobar
|
||||
];
|
||||
|
||||
xsession.windowManager.xmonad = {
|
||||
enable = true;
|
||||
enableContribAndExtras = true;
|
||||
config = ./xmonad/xmonad-config/src/xmonad.hs;
|
||||
};
|
||||
|
||||
home.file.".xinitrc".source = ./xinitrc;
|
||||
|
||||
xdg.configFile = {
|
||||
wezterm = { source = ./wezterm; recursive = true; };
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue