Compare commits
No commits in common. "dc3a536709d230a5aa713e7d18eeaca3cbc5a6cc" and "1ae46cd7b8e07ebd6a57198b057c1cf83f3d6030" have entirely different histories.
dc3a536709
...
1ae46cd7b8
3 changed files with 13 additions and 16 deletions
|
@ -1,8 +1,7 @@
|
||||||
{
|
{ config
|
||||||
config,
|
, lib
|
||||||
lib,
|
, pkgs
|
||||||
pkgs,
|
, ...
|
||||||
...
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
|
@ -207,9 +206,5 @@ in
|
||||||
|
|
||||||
# remote desktop
|
# remote desktop
|
||||||
networking.firewall.allowedTCPPorts = [ 3389 ];
|
networking.firewall.allowedTCPPorts = [ 3389 ];
|
||||||
services.gnome.gnome-remote-desktop.enable = true;
|
|
||||||
systemd.services.gnome-remote-desktop = {
|
|
||||||
wantedBy = [ "graphical.target" ];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
metacfg = {
|
metacfg = {
|
||||||
base.enable = true;
|
base.enable = true;
|
||||||
gui.enable = true;
|
gui.enable = false;
|
||||||
nix-ld.enable = false;
|
nix-ld.enable = false;
|
||||||
nix.enable = true;
|
nix.enable = true;
|
||||||
podman.enable = true;
|
podman.enable = true;
|
||||||
|
|
|
@ -1,9 +1,4 @@
|
||||||
{
|
{ pkgs, lib, config, ... }:
|
||||||
pkgs,
|
|
||||||
lib,
|
|
||||||
config,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
with lib;
|
with lib;
|
||||||
with lib.metacfg;
|
with lib.metacfg;
|
||||||
{
|
{
|
||||||
|
@ -137,6 +132,13 @@ with lib.metacfg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.gnome.gnome-remote-desktop.enable = true;
|
||||||
|
systemd.services.gnome-remote-desktop = {
|
||||||
|
wantedBy = [ "graphical.target" ];
|
||||||
|
};
|
||||||
|
networking.firewall.allowedTCPPorts = [ 3389 ];
|
||||||
|
networking.firewall.allowedUDPPorts = [ 3389 ];
|
||||||
|
|
||||||
environment.sessionVariables = {
|
environment.sessionVariables = {
|
||||||
LIBVA_DRIVER_NAME = "iHD";
|
LIBVA_DRIVER_NAME = "iHD";
|
||||||
# NIXOS_OZONE_WL = "1";
|
# NIXOS_OZONE_WL = "1";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue