summaryrefslogtreecommitdiff
path: root/users/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-04-20 22:10:21 -0400
committerseth <[email protected]>2023-04-20 22:13:45 -0400
commiteb3f9e87435be5941278d819351bac0ece172051 (patch)
treed32d347bcba4760dcf1b3b8d11e6accbde12f49c /users/default.nix
parent65e26c34990fa57e305093572ea3a9596bc45b38 (diff)
move to my external lib
Diffstat (limited to 'users/default.nix')
-rw-r--r--users/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/users/default.nix b/users/default.nix
index 964fc3d..3fe9d4a 100644
--- a/users/default.nix
+++ b/users/default.nix
@@ -1,11 +1,11 @@
-inputs: system:
+system: inputs:
with inputs; {
seth = {
pkgs = import nixpkgsUnstable {
inherit system;
overlays = [nur.overlay getchoo.overlays.default];
};
-
- stateVersion = "23.05";
+ modules = [];
+ extraSpecialArgs = {};
};
}