diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-17 22:08:20 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-17 22:08:20 -0400 |
commit | 640476ab01c501bbaa5b7854b561201bfe40d2ea (patch) | |
tree | 1516ebdda1180a910c4a7ff2e870058a936297e1 /config/default.nix | |
parent | add formatter (diff) | |
download | dotfiles-nix-640476ab01c501bbaa5b7854b561201bfe40d2ea.tar.gz dotfiles-nix-640476ab01c501bbaa5b7854b561201bfe40d2ea.tar.bz2 dotfiles-nix-640476ab01c501bbaa5b7854b561201bfe40d2ea.zip |
fmt
Diffstat (limited to 'config/default.nix')
-rw-r--r-- | config/default.nix | 28 |
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; }; - } |