[TASK] Update rustdesk to 1.4.5 from nixos-unstable

This commit is contained in:
Sebastian Fischer 2026-03-31 21:04:49 +02:00
parent a3199cabaa
commit d25f49bea5
3 changed files with 14 additions and 0 deletions

View File

@ -23,6 +23,10 @@ add-pre-commit-hook:
chmod +x .git/hooks/pre-commit
.PHONY: cleanup
cleanup:
sudo nix-store --optimise && sudo nix-collect-garbage -d
.PHONY: test
test:
echo "Find nix files"

View File

@ -149,6 +149,7 @@ cp -r ~/nixos-cesium/config/* /etc/nixos/
# Remember to activate vm-guest.nix or vm-host.nix in configuration.nix
nix-channel --add https://github.com/nix-community/home-manager/archive/release-25.11.tar.gz home-manager
nix-channel --add https://nixos.org/channels/nixos-unstable nixos-unstable
nix-channel --update
# Konfiguration anwenden

View File

@ -21,5 +21,14 @@
system.stateVersion = "25.11";
nixpkgs.config.allowUnfree = true;
nixpkgs.overlays = [
(final: prev: {
rustdesk-flutter =
let
unstable = import <nixos-unstable> { config = prev.config; };
in
unstable.rustdesk-flutter;
})
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
}