Update syncthing and update audio for rdesktop
This commit is contained in:
parent
376f15ab73
commit
caf53f2735
4 changed files with 8 additions and 5 deletions
|
@ -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,
|
||||
}: {
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -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" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue