nix-config/homeConfigurations.nix
2025-10-16 11:44:11 -03:00

36 lines
582 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"
"stylix"
"tmux"
];
};
"user@io" = mkHome {
username = "user";
tags = [
"btop"
"desktop"
"direnv"
"helix"
"starship"
"stylix"
"tmux"
];
};
};
}