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, 12 insertions, 0 deletions
diff --git a/users/default.nix b/users/default.nix
new file mode 100644
index 0000000..dcfc285
--- /dev/null
+++ b/users/default.nix
@@ -0,0 +1,12 @@
+{inputs, ...}: {
+ configurations = {
+ home = {
+ builder = inputs.hm.lib.homeManagerConfiguration;
+ pkgs = inputs.nixpkgs.legacyPackages.x86_64-linux;
+
+ users = {
+ seth = {};
+ };
+ };
+ };
+}