Files
nix/hosts/server/configuration.nix
2025-03-03 20:19:40 +02:00

29 lines
495 B
Nix

{ config, pkgs, ... }:
{
imports = [
./modules/atproto-pds.nix
];
services.openssh.enable = true;
users.users.ocbwoy3 = {
initialPassword = "thisisapassword42069!"; # not the type passwords i use
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" ];
};
virtualisation.docker.enable = true;
networking.firewall.allowedTCPPorts = [ 22 ];
catppuccin = {
enable = true;
flavor = "mocha";
accent = "blue";
};
system.stateVersion = "23.05"; # DO NOT TOUCH
}