add a file for my personal computers

This commit is contained in:
Andreas Zweili 2021-11-16 14:25:20 +01:00
parent fe37a326ca
commit 7d8d123dcd
1 changed files with 13 additions and 0 deletions

13
home/personal-desktop.nix Normal file
View File

@ -0,0 +1,13 @@
{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;
}