[TASK] Update rustdesk to 1.4.5 from nixos-unstable
This commit is contained in:
parent
a3199cabaa
commit
d25f49bea5
4
Makefile
4
Makefile
@ -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"
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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" ];
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user