Update syncthing and update audio for rdesktop

This commit is contained in:
albert 2024-08-14 09:41:20 +09:00
parent 376f15ab73
commit caf53f2735
Signed by: albert
GPG key ID: 3895DD267CA11BA9
4 changed files with 8 additions and 5 deletions

View file

@ -41,7 +41,7 @@
unfree ? false,
ip ? null,
ephemeral ? false,
deployment_type ? "containers",
deployment_type ? "containers", # Currently used to change where secrets are searched for
pkgs ? let packages = (import ./packages.nix { inherit inputs repo system unfree; }); in packages.pkgs,
pkgs-unstable ? let packages = (import ./packages.nix { inherit inputs repo system unfree; }); in packages.pkgs-unstable,
}: {

View file

@ -1,4 +1,4 @@
{ pkgs, desktop, username, lib, ... }: {
{ pkgs, desktop, username, ... }: {
imports = [
../../users/${username}
../../common/desktops/${desktop}
@ -7,8 +7,11 @@
../../common/services/gnupg-agent.nix
../../common/software/cli/clean-hm.nix
../../common/services/tailscale-autoconnect.nix
./syncthing.nix
];
hardware.pulseaudio.extraModules = [ pkgs.pulseaudio-module-xrdp ];
services.xrdp = {
enable = true;
openFirewall = true;

View file

@ -17,7 +17,7 @@
"notes" = {
id = "notes";
path = "/home/${username}/notes";
devices = [ "framework-server" "nixos-desktop" "nixos-framework" ];
devices = [ "framework-server" "nixos-desktop" "nixos-framework" "rdesktop" ];
};
};
};

View file

@ -1,4 +1,4 @@
{ pkgs, config, hostname, username, ... }: {
{ username, ... }: {
imports = [ ../../common/services/syncthing.nix ];
services.syncthing = {
@ -17,7 +17,7 @@
"notes" = {
id = "notes";
path = "/home/${username}/notes";
devices = [ "framework-server" "nixos-desktop" "nixos-framework" ];
devices = [ "framework-server" "nixos-desktop" "nixos-framework" "rdesktop" ];
};
};
};