dotfiles/nixos/git/default.nix

15 lines
211 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:38:34 +01:00
}: let
username =
if cyplo ? username
then "${cyplo.username}"
else "cyryl";
in {
2024-10-02 14:13:34 +01:00
home-manager.users."${username}" = {...}: {imports = [./home.nix];};
}