dotfiles/nixos/git/default.nix

15 lines
203 B
Nix
Raw Normal View History

2022-12-19 09:09:08 +00:00
{
config,
pkgs,
lib,
2024-10-02 14:13:34 +01:00
cyplo,
2022-12-19 09:09:08 +00:00
...
2024-10-02 14:13:34 +01:00
}:
let
username = if cyplo ? username then "${cyplo.username}" else "cyryl";
in
{
home-manager.users."${username}" = {...}: {imports = [./home.nix];};
}