aboutsummaryrefslogtreecommitdiff
path: root/homes/default.nix
diff options
context:
space:
mode:
authorrubiigen <alyxwren@proton.me>2024-02-02 18:29:45 +0000
committerFrankie B <frankieraybrown@gmail.com>2024-02-02 18:39:57 +0000
commitd666f30475528ce7f50cc3dd92a1693241083fe8 (patch)
tree5b443f79a7100f2db735853335df81d9a7b95cc3 /homes/default.nix
parentea3485f5c5dac7f89562db741bf981b2b743d01c (diff)
major refactor (treewide amongst general cleaning based on my modified dots (with help from notashelf) - perks 1: it works
Diffstat (limited to 'homes/default.nix')
-rw-r--r--homes/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/homes/default.nix b/homes/default.nix
index 267a3d0..27a7c0b 100644
--- a/homes/default.nix
+++ b/homes/default.nix
@@ -1,19 +1,18 @@
{
inputs,
self,
- outputs,
+ config,
...
}: {
home-manager = {
useUserPackages = true;
useGlobalPkgs = true;
extraSpecialArgs = {
- inherit inputs self outputs;
+ inherit inputs self;
};
users = {
- # TODO: "base" user that will be used by default is there is no defined
- # home directory for the user
floppydisk = ./floppydisk;
+ # more users can go here, the format is only for convenience
};
};
}