Add Guac RDP
parent
9750035c93
commit
5aedb0cbcd
|
@ -40,7 +40,7 @@
|
|||
inherit system;
|
||||
specialArgs = attrs;
|
||||
modules = [
|
||||
(applyOverlays [ unfree-overlay ])
|
||||
(applyOverlays [ unfree-overlay unstable-overlay ])
|
||||
./machines/kcnhub/configuration.nix
|
||||
sops-nix.nixosModules.sops
|
||||
];
|
||||
|
|
|
@ -6,6 +6,8 @@
|
|||
./hardware-configuration.nix
|
||||
# Set of Modules Defining System Configuration
|
||||
./modules.nix
|
||||
# Set of system services, like ssh, and RDP/VNC
|
||||
./services.nix
|
||||
# Set of System Wide Available Packages
|
||||
./packages.nix
|
||||
# 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