mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-05-16 15:55:10 +02:00
10 lines
211 B
Nix
10 lines
211 B
Nix
{ config, ... }:
|
|
{
|
|
programs.git = {
|
|
settings.user.name = "traxys";
|
|
settings.user.email = config.extraInfo.email;
|
|
};
|
|
|
|
traxys.waybar.modules."battery".enable = true;
|
|
home.stateVersion = "21.11";
|
|
}
|