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;
|
lightdm.enable = true;
|
||||||
defaultSession = "none+awesome";
|
defaultSession = "none+awesome";
|
||||||
};
|
};
|
||||||
|
windowManager.awesome = {
|
||||||
|
enable = true;
|
||||||
|
luaModules = with pkgs.luaPackages; [
|
||||||
|
luarocks
|
||||||
|
vicious
|
||||||
|
];
|
||||||
|
};
|
||||||
libinput.enable = true;
|
libinput.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,5 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
xsession.windowManager.awesome = {
|
# declaration of awesome wm is in hosts/<name>/default.nix
|
||||||
enable = true;
|
|
||||||
luaModules = with pkgs.luaPackages; [
|
|
||||||
luarocks
|
|
||||||
vicious
|
|
||||||
];
|
|
||||||
};
|
|
||||||
home.file.".config/awesome/rc.lua".source = ./rc.lua;
|
home.file.".config/awesome/rc.lua".source = ./rc.lua;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue