self-hosting/environment.nix

18 lines
216 B
Nix
Raw Normal View History

{ pkgs, nixpkgs, ... }:
2021-07-15 17:46:14 +02:00
{
environment.systemPackages = with pkgs; [
htop
nload
tmux
2021-11-29 02:04:29 +01:00
vim
2021-07-15 17:46:14 +02:00
];
nix = {
nixPath = [
"nixpkgs=${nixpkgs}"
];
};
2022-12-02 03:29:02 +01:00
services.nscd.enableNsncd = true;
2021-07-15 17:46:14 +02:00
}