1
1
mirror of https://github.com/divnix/digga.git synced 2024-12-25 17:14:38 +03:00
digga/examples/hmOnly/home/users/testuser.nix

15 lines
249 B
Nix
Raw Normal View History

2021-07-16 03:55:15 +03:00
{ suites, ... }: let
name = "Test User";
email = "test@example.com";
in {
imports = suites.shell;
programs.browserpass.enable = true;
programs.starship.enable = true;
programs.git = {
userName = name;
userEmail = email;
};
}