about summary refs log tree commit diff
path: root/home/modules/programs/nixpkgs/default.nix
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2023-08-11 17:06:37 +0900
committersefidel <contact@sefidel.net>2023-08-11 17:06:37 +0900
commit8e61efe2e63343be7b0002b394a1115490aaeb50 (patch)
tree226345c53d891d9c29b289ba3926a717093b6da1 /home/modules/programs/nixpkgs/default.nix
parentb11648c397585720e7077e1a5ca37e0f071b6c3b (diff)
downloadnixrc-8e61efe2e63343be7b0002b394a1115490aaeb50.tar.gz
nixrc-8e61efe2e63343be7b0002b394a1115490aaeb50.zip
chore: types.string -> types.str
Diffstat (limited to 'home/modules/programs/nixpkgs/default.nix')
-rw-r--r--home/modules/programs/nixpkgs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/home/modules/programs/nixpkgs/default.nix b/home/modules/programs/nixpkgs/default.nix
index e20923f..3220844 100644
--- a/home/modules/programs/nixpkgs/default.nix
+++ b/home/modules/programs/nixpkgs/default.nix
@@ -7,7 +7,7 @@ in
 
 {
   options.nixpkgs.allowedUnfree = lib.mkOption {
-    type = lib.types.listOf lib.types.string;
+    type = lib.types.listOf lib.types.str;
     default = [ ];
     description = ''
       Allows for unfree packages by their name.
@@ -15,7 +15,7 @@ in
   };
 
   options.nixpkgs.allowedInsecure = lib.mkOption {
-    type = lib.types.listOf lib.types.string;
+    type = lib.types.listOf lib.types.str;
     default = [ ];
     description = ''
       Allows for insercure packages by their name.