reflopactor (#1)
This commit is contained in:
parent
4b0c887369
commit
243a9339f0
16 changed files with 140 additions and 283 deletions
19
homes/default.nix
Normal file
19
homes/default.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
inputs,
|
||||
self,
|
||||
outputs,
|
||||
...
|
||||
}: {
|
||||
home-manager = {
|
||||
useUserPackages = true;
|
||||
useGlobalPkgs = true;
|
||||
extraSpecialArgs = {
|
||||
inherit inputs self outputs;
|
||||
};
|
||||
users = {
|
||||
# TODO: "base" user that will be used by default is there is no defined
|
||||
# home directory for the user
|
||||
floppydisk = ./floppydisk;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in a new issue