Fixed light config error, flake should build without errors
Some checks failed
Check config / build (push) Failing after 10m14s

This commit is contained in:
Alexandre 2026-06-01 23:22:16 +02:00
parent 079c8af38f
commit a55a6d53fe
2 changed files with 7 additions and 1 deletions

View File

@ -7,6 +7,6 @@ in
imports = [
./hardware-configuration.nix
modules.common.module
#modules.nixos.desktop.xfce # Desktop Enviroment
modules.nixos.desktop.xfce # Desktop Enviroment
];
}

View File

@ -1,6 +1,11 @@
{ config, pkgs, ... }:
{
services = {
gnome = {
gcr-ssh-agent = {
enable = false;
};
};
xserver = {
enable = true;
desktopManager = {
@ -17,3 +22,4 @@
};
};
}