summaryrefslogtreecommitdiff
path: root/users/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/default.nix')
-rw-r--r--users/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/users/default.nix b/users/default.nix
new file mode 100644
index 0000000..c48f1a8
--- /dev/null
+++ b/users/default.nix
@@ -0,0 +1,10 @@
+{ withSystem, ... }:
+
+{
+ configurations.home = {
+ seth = {
+ modules = [ ./seth/home.nix ];
+ pkgs = withSystem "x86_64-linux" ({ pkgs, ... }: pkgs);
+ };
+ };
+}