removed headless option

This commit is contained in:
KoenDR06 2025-05-03 13:06:41 +02:00
parent 5146d3db49
commit 7831b80bb0
4 changed files with 4 additions and 17 deletions

View file

@ -1,8 +1,4 @@
{ {inputs, ...}: {
inputs,
headless,
...
}: {
imports = [ imports = [
./greeter/sddm.nix ./greeter/sddm.nix
./refind.nix ./refind.nix

View file

@ -1,8 +1,4 @@
{ {inputs, ...}: {
inputs,
headless,
...
}: {
imports = [ imports = [
./apps ./apps
./hardware ./hardware

View file

@ -1,8 +1,4 @@
{ {inputs, ...}: {
inputs,
headless,
...
}: {
imports = [ imports = [
./wol.nix ./wol.nix
./backup.nix ./backup.nix

View file

@ -4,7 +4,6 @@
lib, lib,
config, config,
pkgs, pkgs,
headless,
... ...
}: let }: let
inherit (lib) mkEnableOption mkIf mkOption types; inherit (lib) mkEnableOption mkIf mkOption types;
@ -31,7 +30,7 @@ in {
konsole konsole
]; ];
home-manager.users.${homeCfg.username} = lib.mkIf (!headless) { home-manager.users.${homeCfg.username} = {
imports = [./config.nix]; imports = [./config.nix];
}; };
}; };