1
0

configuration/common: split common into seperate files

This commit is contained in:
2023-09-22 21:11:15 +02:00
parent c2b1697fb5
commit 04638f4edf
8 changed files with 149 additions and 108 deletions

View File

@@ -0,0 +1,26 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
gptfdisk
htop
parted
tmux
colmena
vim
agenix
];
programs.mtr.enable = true;
programs.git.enable = true;
programs.git.config = {
user = {
name = "clerie";
email = "git@clerie.de";
};
};
}