diff --git a/hosts/configuration_desktop.nix b/hosts/configuration_desktop.nix index 01714f8..d1c55e4 100644 --- a/hosts/configuration_desktop.nix +++ b/hosts/configuration_desktop.nix @@ -74,11 +74,6 @@ corefonts # MS intel-one-mono cascadia-code - (nerdfonts.override { # Nerdfont Icons override - fonts = [ - "FiraCode" - ]; - }) ]; environment = { diff --git a/hosts/configuration_server.nix b/hosts/configuration_server.nix index dc233d4..58ecfa1 100644 --- a/hosts/configuration_server.nix +++ b/hosts/configuration_server.nix @@ -63,11 +63,6 @@ corefonts # MS intel-one-mono cascadia-code - (nerdfonts.override { # Nerdfont Icons override - fonts = [ - "FiraCode" - ]; - }) ]; environment = { diff --git a/systemSettings.nix b/systemSettings.nix new file mode 100644 index 0000000..d973b26 --- /dev/null +++ b/systemSettings.nix @@ -0,0 +1,18 @@ +# options for systemsettings +{ pkgs, lib, config, ... }: + +{ + options = { + systemSettings.enable = lib.mkEnableOption "enables standard systemsettings"; + }; + + config = lib.mkIf config.systemSettings.enable { + system = lib.mkDefault "x86_64-linux"; + profile = lib.mkDefault "personal"; + timezone = "Europe/Berlin"; + locale = "en_US.UTF-8"; + bootMode = lib.mkDefault "uefi"; + bootMountPath = "/boot"; + }; + +}