This commit is contained in:
2025-03-03 20:19:40 +02:00
parent a83a7f62ec
commit 453c019809
6 changed files with 160 additions and 71 deletions

View File

@@ -106,8 +106,8 @@
theme = "robbyrussell";
};
shellAliases = {
nixos_rebuild = "sudo nixos-rebuild switch --flake .#default --impure --cores 4";
neofetch = "hyfetch";
nixos_rebuild = "sudo nixos-rebuild switch --flake .#default --impure --cores 4 -L --upgrade";
neofetch = "fastfetch";
};
};
@@ -119,7 +119,7 @@
# vesktop
# legcord
equibop
kdenlive
libsForQt5.kdenlive
libsForQt5.qt5ct
libsForQt5.lightly
kdePackages.qt6ct

View File

@@ -26,8 +26,9 @@
-bios ${OVMF.fd}/FV/OVMF.fd \
"$@"
'')
(writeShellScriptBin "regretevator" ''xdg-open roblox://placeId=4972273297'')
(writeShellScriptBin "regretevator" ''xdg-open https://www.roblox.com/games/4972273297/Regretevator-ELEVATOR-SIMULATOR'')
libxkbcommon
ffmpeg
gnupg
nix-direnv
htop
@@ -59,7 +60,7 @@
pypresence
pygobject3
]))
wrangler
# wrangler
thefuck
fontforge
xclip
@@ -79,7 +80,7 @@
pywal
pavucontrol
polkit
polkit-kde-agent
libsForQt5.polkit-kde-agent
wlogout
libnotify
killall

View File

@@ -0,0 +1,28 @@
{ 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
}

View File

@@ -0,0 +1,27 @@
{ config, inputs, pkgs, ... }:
{
# TODO:
# Upload PDS backup to /var/lib/pds
# and specify secrets in /private/atproto-pds.env
services.pds = {
enable = true;
pdsadmin.enable = true;
environmentFiles = [ "/private/atproto-pds.env" ];
settings = {
PDS_CRAWLERS = "https://bsky.network";
LOG_ENABLED = true;
PDS_HOSTNAME = "pds.darktru.win";
PDS_VERSION = "I'm an ATProto PDS!";
PDS_DID_PLC_URL = "https://plc.directory";
PDS_CONTACT_EMAIL_ADDRESS = "ocbwoy3@ocbwoy3.dev";
PDS_PRIVACY_POLICY_URL = "https://ocbwoy3.dev";
PDS_TERMS_OF_SERVICE_URL = "https://discord.gg/cQDvPtv3Dt";
PDS_ACCEPTING_REPO_IMPORTS = true;
};
};
}