Add a simple openbox config

This commit is contained in:
Charlotte Van Petegem 2020-03-12 09:59:03 +01:00
parent 1d224d3ab6
commit 8fe690614e
5 changed files with 762 additions and 17 deletions

View file

@ -0,0 +1,14 @@
{ ... }:
{
imports = [ ../base-x/default.nix ];
home-manager.users.charlotte = { pkgs, ... }: {
xdg.configFile."openbox/rc.xml".source = ./rc.xml;
xsession = {
windowManager.command = "${pkgs.openbox}/bin/openbox";
initExtra = ''
${pkgs.tint2}/bin/tint2 &
'';
};
};
}