dotfiles/nixos/git/default.nix
Cyryl Płotnicki 530f4023fc
Some checks failed
use nix / build (push) Failing after 4m12s
configure git for work
2024-10-02 14:13:34 +01:00

14 lines
203 B
Nix

{
config,
pkgs,
lib,
cyplo,
...
}:
let
username = if cyplo ? username then "${cyplo.username}" else "cyryl";
in
{
home-manager.users."${username}" = {...}: {imports = [./home.nix];};
}