dotfiles/nixos/git/default.nix
Cyryl Płotnicki aa507c0814
Some checks failed
use nix / build (push) Failing after 4m4s
use zsh on work mac
2024-10-02 14:38:34 +01:00

14 lines
211 B
Nix

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