dregil: Use gnome for now by default

This commit is contained in:
Alexander Kobjolke 2025-06-16 20:57:41 +02:00
parent 2e7fa6eb14
commit efa99d6331
6 changed files with 26 additions and 31 deletions

View file

@ -1,5 +1,9 @@
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}:
{
config.xsession.windowManager.xmonad = {
enable = true;
@ -8,5 +12,8 @@
};
# control backlight
config.home.packages = [ pkgs.xorg.xbacklight pkgs.scrot ];
config.home.packages = [
pkgs.xorg.xbacklight
pkgs.scrot
];
}