nb changes, add wol script to fw

This commit is contained in:
2024-07-07 16:33:22 +02:00
parent 84cd8fa1cc
commit ad8090f8f8
6 changed files with 43 additions and 2 deletions

View File

@@ -120,7 +120,6 @@ in {
git-filter-repo
ykfde
nix-prefetch-git
unstable.rustdesk-flutter
];
environment.variables = {

View File

@@ -18,7 +18,7 @@
{
device = "none";
fsType = "tmpfs";
options = [ "size=3G" "mode=755" ];
options = [ "size=16G" "mode=755" ];
};
fileSystems."/nix" =

View File

@@ -0,0 +1,19 @@
{ pkgs, ... }:
let
rustDeskDesktopItem = pkgs.makeDesktopItem {
name = "rustdesk-xorg";
desktopName = "RustDesk Xorg";
icon = "rustdesk";
exec = "env -u WAYLAND_DISPLAY rustdesk";
genericName = "Remote Desktop";
categories = [ "Network" ];
mimeTypes = [ "x-scheme-handler/rustdesk" ];
};
in
{
environment.systemPackages = [
pkgs.rustdesk
rustDeskDesktopItem
];
}

View File

@@ -26,6 +26,7 @@ in {
./social.nix
./signal-work.nix
./parsec.nix
./rustdesk.nix
./thunderbird.nix
];
@@ -127,6 +128,7 @@ in {
wayland
wl-clipboard
wofi
wol
wtype
yubikey-manager-qt
];