This commit is contained in:
Tasia Iso 2024-06-26 18:52:51 +02:00
parent 9656316032
commit 5e2d1f4532
Signed by: tasiaiso
SSH key fingerprint: SHA256:KiRjUay5C9i6objsEOIycygBHn54pDBB3Lj7fyJ0Elw
4 changed files with 9 additions and 3 deletions

View file

@ -19,5 +19,6 @@
file file
ffmpeg ffmpeg
usbutils usbutils
bat
]; ];
} }

View file

@ -5,9 +5,8 @@
}: { }: {
# Packages installed on full-install machines # Packages installed on full-install machines
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
bat
nextdns nextdns
rustdesk-flutter
# need to test # need to test
helix helix

View file

@ -40,7 +40,7 @@
g = "git"; g = "git";
l = "ls"; l = "ls";
lg = "lazygit"; lg = "lazygit";
ll = "ls -al"; ll = "lsd -al";
done = "curl -d 'Done' ntfy.sh/tasiaiso_done"; done = "curl -d 'Done' ntfy.sh/tasiaiso_done";
rebuild = "sudo nixos-rebuild switch --flake .#$(cat /etc/hostname)"; rebuild = "sudo nixos-rebuild switch --flake .#$(cat /etc/hostname)";

View file

@ -156,6 +156,12 @@ in {
# acceleration = "cuda"; # acceleration = "cuda";
}; };
services.rustdesk-server = {
enable = true;
openFirewall = true;
relayIP = "100.91.88.2";
};
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
system.stateVersion = "23.11"; system.stateVersion = "23.11";
} }