nixos/home-manager/ubuntu.nix

18 lines
290 B
Nix
Raw Normal View History

2021-12-11 16:32:04 +01:00
{ pkgs, ... }:
2021-11-22 14:48:47 +01:00
{
2021-11-18 12:11:46 +01:00
imports = [
2021-12-22 18:28:56 +01:00
./common
2021-12-22 18:05:25 +01:00
./software/git
2021-11-18 12:11:46 +01:00
];
2021-11-22 14:48:47 +01:00
programs.git.userEmail = "andreas@zweili.ch";
2021-11-22 18:33:36 +01:00
programs.bash = {
enable = true;
bashrcExtra = ''
2021-12-22 18:07:39 +01:00
. ~/git_repos/nixos/home-manager/configs/bash/bashrc
2021-11-22 18:33:36 +01:00
'';
};
2021-11-18 12:11:46 +01:00
targets.genericLinux.enable = true;
}