mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
17 lines
216 B
Nix
17 lines
216 B
Nix
{ pkgs, nixpkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
htop
|
|
nload
|
|
tmux
|
|
vim
|
|
];
|
|
|
|
nix = {
|
|
nixPath = [
|
|
"nixpkgs=${nixpkgs}"
|
|
];
|
|
};
|
|
|
|
services.nscd.enableNsncd = true;
|
|
}
|