Skip to content

Commit

Permalink
disable xrdp and remove unused bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
gvolpe committed Sep 10, 2023
1 parent 8768987 commit 784e7cf
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion switch
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ rebuild_system() {
}

rebuild_vm() {
sudo nixos-rebuild build-vm --flake .#tongfang-amd
nixos-rebuild build-vm --flake .#tongfang-amd
}

restart_X() {
Expand Down
4 changes: 2 additions & 2 deletions system/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ in

# Remote desktop protocol
xrdp = {
enable = true;
enable = false;
defaultWindowManager = "xmonad";
openFirewall = true;
openFirewall = false;
#package = pkgs.xrdp.overrideAttrs (old: {
#postInstall = old.postInstall + ''
#echo ">>>>>>>>> INI file"
Expand Down
2 changes: 1 addition & 1 deletion system/machine/tongfang-amd/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ pkgs, ... }:

{
imports = [
Expand Down
2 changes: 1 addition & 1 deletion system/machine/tongfang-amd/hardware-configuration.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Generated by ‘nixos-generate-config’ and formatted manually
{ config, lib, pkgs, modulesPath, ... }:
{ modulesPath, ... }:

{
imports = [
Expand Down
2 changes: 1 addition & 1 deletion system/wm/xmonad.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ pkgs, ... }:

{
programs.dconf.enable = true;
Expand Down

0 comments on commit 784e7cf

Please sign in to comment.