renamed mkUser to mkHome
This commit is contained in:
parent
02eb626d33
commit
ecb290a989
2 changed files with 4 additions and 4 deletions
|
|
@ -1,11 +1,11 @@
|
|||
{ inputs, ... }:
|
||||
let
|
||||
utils = import ./utils.nix { inherit inputs; };
|
||||
inherit (utils) mkUser;
|
||||
inherit (utils) mkHome;
|
||||
in
|
||||
{
|
||||
flake.homeConfigurations = {
|
||||
"user@rotterdam" = mkUser {
|
||||
"user@rotterdam" = mkHome {
|
||||
username = "user";
|
||||
tags = [
|
||||
"btop"
|
||||
|
|
@ -19,7 +19,7 @@ in
|
|||
];
|
||||
};
|
||||
|
||||
"user@io" = mkUser {
|
||||
"user@io" = mkHome {
|
||||
username = "user";
|
||||
tags = [
|
||||
"btop"
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@ in
|
|||
};
|
||||
|
||||
# Tag-based user configuration system
|
||||
mkUser =
|
||||
mkHome =
|
||||
{
|
||||
username,
|
||||
homeDirectory ? "/home/${username}",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue