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 = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
modules.common.module modules.common.module
#modules.nixos.desktop.xfce # Desktop Enviroment modules.nixos.desktop.xfce # Desktop Enviroment
]; ];
} }

View File

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