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