summaryrefslogtreecommitdiff
path: root/config/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'config/default.nix')
-rw-r--r--config/default.nix28
1 files changed, 8 insertions, 20 deletions
diff --git a/config/default.nix b/config/default.nix
index 376b642..496b152 100644
--- a/config/default.nix
+++ b/config/default.nix
@@ -1,14 +1,13 @@
-{ config, lib, pkgs, ... }:
-
-with lib;
-
-let
-
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
+with lib; let
# monitor options
-
monitorOpts = self: {
options = {
-
name = mkOption {
type = types.str;
description = "Name of the monitor.";
@@ -19,7 +18,6 @@ let
description = "Scaling factor of the monitor.";
default = 1.0;
};
-
};
};
@@ -27,7 +25,6 @@ let
colorOpts = self: {
options = {
-
name = mkOption {
type = types.str;
description = "Name of the theme";
@@ -173,18 +170,12 @@ let
description = "Terminal bright color";
};
};
-
};
};
stateVersion = "25.05";
-
-in
-
-{
-
+in {
options = {
-
#
# System information
#
@@ -268,7 +259,6 @@ in
type = types.str;
description = "Icon system font.";
};
-
};
borderWidth = mkOption {
@@ -337,7 +327,6 @@ in
description = "List of programs to auto run in a graphical environment.";
default = [];
};
-
};
config = {
@@ -355,5 +344,4 @@ in
home-manager.users.root.home.stateVersion = stateVersion;
system.stateVersion = stateVersion;
};
-
}