gendry: enable awesomewm on sddm
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing

This commit is contained in:
Jake Hillion 2022-11-27 18:09:44 +00:00
parent 0921c9f16a
commit 02246f758f
2 changed files with 9 additions and 0 deletions

View File

@ -8,6 +8,7 @@
imports = [
../../modules/common/default.nix
../../modules/desktop/awesome/default.nix
./hardware-configuration.nix
./persist.nix
];

View File

@ -0,0 +1,8 @@
{ config, pkgs, lib, ... }:
{
services.xserver = {
enable = true;
windowManager.awesome.enable = true;
};
}