nixos/home/personal-desktop.nix

14 lines
249 B
Nix
Raw Normal View History

2021-11-16 14:25:20 +01:00
{config, pkgs, ...}:
{
imports = [
./common.nix
];
programs.git = {
enable = true;
userName = "Andreas Zweili";
userEmail = "andreas@zweili.ch";
};
# raw config files
home.file.".bashrc".source = ./work_config/bashrc;
}