1
0
Fork 0
forked from emily/nixfiles

sears: add nil

This commit is contained in:
emily 2024-11-17 16:48:57 +01:00
parent 8444f3e28c
commit 38397e271b
Signed by untrusted user: emily
GPG key ID: F6F4C66207FCF995
2 changed files with 12 additions and 1 deletions

View file

@ -23,6 +23,7 @@ in {
man-pages-posix man-pages-posix
unzip unzip
zip zip
fd
figlet figlet
]; ];
programs = { programs = {

View file

@ -1,4 +1,4 @@
{ ... }: { { pkgs, ... }: {
imports = [ imports = [
../../common ../../common
../../profiles/builder.nix ../../profiles/builder.nix
@ -18,6 +18,16 @@
]; ];
}; };
users.users.nil = {
isNormalUser = true;
shell = pkgs.fish;
ignoreShellProgramCheck = true;
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = [
"sk-ssh-ed25519@openssh.com AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAICczPHRwY9MAwDGlcB0QgMOJjcpLJhVU3covrW9RBS62AAAABHNzaDo="
];
};
services.postgresql.settings = { services.postgresql.settings = {
max_connections = 200; max_connections = 200;
shared_buffers = "24GB"; shared_buffers = "24GB";