summaryrefslogtreecommitdiff
path: root/users/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-02-04 16:07:57 -0500
committerseth <[email protected]>2024-02-04 16:07:57 -0500
commit80321e46cbd2e436aa4b1c0edfcd5de2c71abcd0 (patch)
tree349bd26cd6ad7d3e50c7d2e59bfb11ebb20ad1cd /users/default.nix
parentcde5f27792b28aebde995d78d157ad0041d7018c (diff)
flakeModules/configurations: import nixos/darwin modules by default
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 = {};
+ };
+ };
+ };
+}