initial halfway working config

This commit is contained in:
Rouven Seifert 2023-01-20 10:46:28 +01:00
parent d0371f85b3
commit c59157a753
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
8 changed files with 301 additions and 22 deletions

View file

@ -8,9 +8,10 @@
./hardware-configuration.nix
./modules/autorandr
./modules/networks
./modules/lightdm
#./modules/lightdm
#./modules/gdm
../../shared/vim.nix
../../shared/input.nix
#../../shared/input.nix
../../shared/sops.nix
../../shared/gpg.nix
../../shared/zsh-fix.nix
@ -29,9 +30,9 @@
services.xserver = {
enable = true;
displayManager = {
defaultSession = "none+awesome";
};
#displayManager = {
#defaultSession = "none+awesome";
#};
windowManager.awesome = {
enable = true;
luaModules = with pkgs.luaPackages; [

View file

@ -0,0 +1,6 @@
{ config, pkgs, ... }:
{
services.xserver.displayManager.gdm = {
enable = true;
};
}