had to fix awesome

This commit is contained in:
Rouven Seifert 2022-12-20 14:42:40 +01:00
parent ebce81ca64
commit db9c5edef9
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
3 changed files with 11 additions and 10 deletions

View file

@ -40,6 +40,13 @@
lightdm.enable = true;
defaultSession = "none+awesome";
};
windowManager.awesome = {
enable = true;
luaModules = with pkgs.luaPackages; [
luarocks
vicious
];
};
libinput.enable = true;
};

View file

@ -1,11 +1,5 @@
{ config, pkgs, ... }:
{
xsession.windowManager.awesome = {
enable = true;
luaModules = with pkgs.luaPackages; [
luarocks
vicious
];
};
# declaration of awesome wm is in hosts/<name>/default.nix
home.file.".config/awesome/rc.lua".source = ./rc.lua;
}