28 lines
352 B
Nix
28 lines
352 B
Nix
![]() |
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
environment = {
|
||
|
systemPackages = with pkgs; [
|
||
|
];
|
||
|
|
||
|
noXlibs = true;
|
||
|
};
|
||
|
|
||
|
security = {
|
||
|
hideProcessInformation = true;
|
||
|
};
|
||
|
|
||
|
boot.tmpOnTmpfs = true;
|
||
|
|
||
|
services.xserver.enable = false;
|
||
|
|
||
|
programs = {
|
||
|
gnupg.agent = {
|
||
|
enable = true;
|
||
|
enableSSHSupport = true;
|
||
|
};
|
||
|
|
||
|
ssh.startAgent = true;
|
||
|
};
|
||
|
}
|