summaryrefslogtreecommitdiff
path: root/users/seth/options.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-01-23 15:44:04 -0500
committerseth <[email protected]>2023-01-23 16:06:56 -0500
commit79b1d22cc9eb3752ae798d5ca9e6eeefeb86799e (patch)
tree4efdc7145ab3d13632ff956b8a6aa187bcbd568e /users/seth/options.nix
parent9075aa13405b4d390bfe50cde83938c9a3af0fa8 (diff)
chore: general cleanup + use `with` less
Diffstat (limited to 'users/seth/options.nix')
-rw-r--r--users/seth/options.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/users/seth/options.nix b/users/seth/options.nix
index b073e78..f0bf636 100644
--- a/users/seth/options.nix
+++ b/users/seth/options.nix
@@ -2,15 +2,14 @@
config,
lib,
...
-}:
-with lib; {
- options.seth = with types; {
- devel-packages = mkOption {
+}: {
+ options.seth = with lib.types; {
+ devel-packages = lib.mkOption {
type = bool;
default = false;
description = "install development packages for neovim lsp";
};
- gui-stuff = mkOption {
+ gui-stuff = lib.mkOption {
type = bool;
default = false;
description = "install gui-related packages";