mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-11 01:06:19 +02:00
had to fix awesome
This commit is contained in:
parent
ebce81ca64
commit
db9c5edef9
3 changed files with 11 additions and 10 deletions
|
@ -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…
Add table
Reference in a new issue