From a97253a71e9580c13d5bbee71d0cc63caa20048d Mon Sep 17 00:00:00 2001 From: cnst Date: Sat, 16 Aug 2025 10:52:54 +0200 Subject: [PATCH] removing stupid role thingy --- hosts/bunk/settings.nix | 1 - hosts/kima/settings.nix | 1 - hosts/sobotka/settings.nix | 1 - hosts/toothpc/settings.nix | 1 - hosts/ziggy/settings.nix | 1 - modules/settings/accounts/default.nix | 5 ----- 6 files changed, 10 deletions(-) diff --git a/hosts/bunk/settings.nix b/hosts/bunk/settings.nix index e62c79d8..5712b2d4 100644 --- a/hosts/bunk/settings.nix +++ b/hosts/bunk/settings.nix @@ -4,7 +4,6 @@ username = "cnst"; mail = "adam@cnst.dev"; sshUser = "bunk"; - role = "desktop"; }; monitors = [ { diff --git a/hosts/kima/settings.nix b/hosts/kima/settings.nix index c8f4051f..290f2060 100644 --- a/hosts/kima/settings.nix +++ b/hosts/kima/settings.nix @@ -4,7 +4,6 @@ username = "cnst"; mail = "adam@cnst.dev"; sshUser = "kima"; - role = "desktop"; }; monitors = [ { diff --git a/hosts/sobotka/settings.nix b/hosts/sobotka/settings.nix index 83bcfac9..3c42b75d 100644 --- a/hosts/sobotka/settings.nix +++ b/hosts/sobotka/settings.nix @@ -4,7 +4,6 @@ username = "cnst"; mail = "adam@cnst.dev"; sshUser = "sobotka"; - role = "server"; }; }; } diff --git a/hosts/toothpc/settings.nix b/hosts/toothpc/settings.nix index 4ec34f48..3ee99687 100644 --- a/hosts/toothpc/settings.nix +++ b/hosts/toothpc/settings.nix @@ -4,7 +4,6 @@ username = "toothpick"; mail = "place@holder"; sshUser = "toothpc"; - role = "desktop"; }; monitors = [ { diff --git a/hosts/ziggy/settings.nix b/hosts/ziggy/settings.nix index 435f6580..ea1c6831 100644 --- a/hosts/ziggy/settings.nix +++ b/hosts/ziggy/settings.nix @@ -4,7 +4,6 @@ username = "cnst"; mail = "adam@cnst.dev"; sshUser = "ziggy"; - role = "server"; }; }; } diff --git a/modules/settings/accounts/default.nix b/modules/settings/accounts/default.nix index 3ac3715d..fbd59e9d 100644 --- a/modules/settings/accounts/default.nix +++ b/modules/settings/accounts/default.nix @@ -45,10 +45,5 @@ in { default = null; description = "Optional override for selecting an SSH key by name"; }; - role = mkOption { - type = types.enum ["desktop" "server"]; - default = "desktop"; - description = "Defines the system role (desktop or server)."; - }; }; }