removed headless option
This commit is contained in:
parent
5146d3db49
commit
7831b80bb0
4 changed files with 4 additions and 17 deletions
|
|
@ -1,8 +1,4 @@
|
||||||
{
|
{inputs, ...}: {
|
||||||
inputs,
|
|
||||||
headless,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [
|
imports = [
|
||||||
./greeter/sddm.nix
|
./greeter/sddm.nix
|
||||||
./refind.nix
|
./refind.nix
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,4 @@
|
||||||
{
|
{inputs, ...}: {
|
||||||
inputs,
|
|
||||||
headless,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [
|
imports = [
|
||||||
./apps
|
./apps
|
||||||
./hardware
|
./hardware
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,4 @@
|
||||||
{
|
{inputs, ...}: {
|
||||||
inputs,
|
|
||||||
headless,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [
|
imports = [
|
||||||
./wol.nix
|
./wol.nix
|
||||||
./backup.nix
|
./backup.nix
|
||||||
|
|
|
||||||
|
|
@ -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];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue