mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 05:13:10 +01:00
had to fix awesome
This commit is contained in:
parent
ebce81ca64
commit
db9c5edef9
|
@ -40,6 +40,13 @@
|
|||
lightdm.enable = true;
|
||||
defaultSession = "none+awesome";
|
||||
};
|
||||
windowManager.awesome = {
|
||||
enable = true;
|
||||
luaModules = with pkgs.luaPackages; [
|
||||
luarocks
|
||||
vicious
|
||||
];
|
||||
};
|
||||
libinput.enable = true;
|
||||
};
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue