34 lines
548 B
Nix
34 lines
548 B
Nix
{ inputs, ... }:
|
|
let
|
|
utils = import ./utils.nix { inherit inputs; };
|
|
inherit (utils) mkHome;
|
|
in
|
|
{
|
|
flake.homeConfigurations = {
|
|
"user@rotterdam" = mkHome {
|
|
username = "user";
|
|
tags = [
|
|
"btop"
|
|
"desktop"
|
|
"direnv"
|
|
"gaming"
|
|
"helix"
|
|
"obs-studio"
|
|
"starship"
|
|
"tmux"
|
|
];
|
|
};
|
|
|
|
"user@io" = mkHome {
|
|
username = "user";
|
|
tags = [
|
|
"btop"
|
|
"desktop"
|
|
"direnv"
|
|
"helix"
|
|
"starship"
|
|
"tmux"
|
|
];
|
|
};
|
|
};
|
|
}
|