Add Guac RDP
parent
9750035c93
commit
5aedb0cbcd
|
@ -40,7 +40,7 @@
|
||||||
inherit system;
|
inherit system;
|
||||||
specialArgs = attrs;
|
specialArgs = attrs;
|
||||||
modules = [
|
modules = [
|
||||||
(applyOverlays [ unfree-overlay ])
|
(applyOverlays [ unfree-overlay unstable-overlay ])
|
||||||
./machines/kcnhub/configuration.nix
|
./machines/kcnhub/configuration.nix
|
||||||
sops-nix.nixosModules.sops
|
sops-nix.nixosModules.sops
|
||||||
];
|
];
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
# Set of Modules Defining System Configuration
|
# Set of Modules Defining System Configuration
|
||||||
./modules.nix
|
./modules.nix
|
||||||
|
# Set of system services, like ssh, and RDP/VNC
|
||||||
|
./services.nix
|
||||||
# Set of System Wide Available Packages
|
# Set of System Wide Available Packages
|
||||||
./packages.nix
|
./packages.nix
|
||||||
# Set of Users on This System
|
# Set of Users on This System
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
{ ... }: {
|
||||||
|
imports = [
|
||||||
|
./services/remote-desktop-guac.nix
|
||||||
|
];
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
{ config, lib, pkgs, nixpkgs-unstable, ... }: {
|
||||||
|
imports = [
|
||||||
|
"${nixpkgs-unstable}/nixos/modules/services/web-apps/guacamole-server.nix"
|
||||||
|
];
|
||||||
|
|
||||||
|
services.guacamole-server.enable = true;
|
||||||
|
services.guacamole-server.package = pkgs.unstable.guacamole-server;
|
||||||
|
services.guacamole-server.port = 4822;
|
||||||
|
}
|
Loading…
Reference in New Issue