reflopactor

This commit is contained in:
NotAShelf 2023-04-25 23:09:03 +03:00
commit 8f372cde30
No known key found for this signature in database
GPG key ID: F0D14CCB5ED5AA22
16 changed files with 140 additions and 283 deletions

19
homes/default.nix Normal file
View 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;
};
};
}