mirror of
https://github.com/Death916/nixconfig.git
synced 2026-04-10 02:54:39 -07:00
29 lines
390 B
Nix
29 lines
390 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
|
|
virtualisation.docker.enable = true;
|
|
|
|
programs.nh = {
|
|
enable = true;
|
|
clean.enable = true;
|
|
clean.extraArgs = "--keep-since 7d --keep 10";
|
|
flake = "/home/death916/nixconfig/";
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
vim
|
|
htop
|
|
tailscale
|
|
rsync
|
|
multipath-tools
|
|
btop
|
|
wget
|
|
unzip
|
|
manix
|
|
];
|
|
}
|