summaryrefslogtreecommitdiff
path: root/users/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/default.nix')
-rw-r--r--users/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/users/default.nix b/users/default.nix
index 6f5a787..964fc3d 100644
--- a/users/default.nix
+++ b/users/default.nix
@@ -1,9 +1,11 @@
-{inputs}:
+inputs: system:
with inputs; {
- users = {system}: {
- seth = {
- pkgs = nixpkgsUnstable.legacyPackages.${system};
- stateVersion = "23.05";
+ seth = {
+ pkgs = import nixpkgsUnstable {
+ inherit system;
+ overlays = [nur.overlay getchoo.overlays.default];
};
+
+ stateVersion = "23.05";
};
}