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,
|
unfree ? false,
|
||||||
ip ? null,
|
ip ? null,
|
||||||
ephemeral ? false,
|
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 ? 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,
|
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 = [
|
imports = [
|
||||||
../../users/${username}
|
../../users/${username}
|
||||||
../../common/desktops/${desktop}
|
../../common/desktops/${desktop}
|
||||||
|
@ -7,8 +7,11 @@
|
||||||
../../common/services/gnupg-agent.nix
|
../../common/services/gnupg-agent.nix
|
||||||
../../common/software/cli/clean-hm.nix
|
../../common/software/cli/clean-hm.nix
|
||||||
../../common/services/tailscale-autoconnect.nix
|
../../common/services/tailscale-autoconnect.nix
|
||||||
|
./syncthing.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
hardware.pulseaudio.extraModules = [ pkgs.pulseaudio-module-xrdp ];
|
||||||
|
|
||||||
services.xrdp = {
|
services.xrdp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
"notes" = {
|
"notes" = {
|
||||||
id = "notes";
|
id = "notes";
|
||||||
path = "/home/${username}/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 ];
|
imports = [ ../../common/services/syncthing.nix ];
|
||||||
|
|
||||||
services.syncthing = {
|
services.syncthing = {
|
||||||
|
@ -17,7 +17,7 @@
|
||||||
"notes" = {
|
"notes" = {
|
||||||
id = "notes";
|
id = "notes";
|
||||||
path = "/home/${username}/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