test
This commit is contained in:
parent
19b4ca7c2d
commit
ad840a141d
3 changed files with 9 additions and 8 deletions
|
@ -27,12 +27,10 @@
|
|||
prefix-highlight
|
||||
];
|
||||
extraConfig = ''
|
||||
unbind C-b
|
||||
set-option -g prefix C-a
|
||||
bind-key C-a send-prefix
|
||||
|
||||
bind | split-window -h
|
||||
bind - split-window -v
|
||||
bind n swap-window -t +1
|
||||
bind N swap-window -t -1
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, inputs, config, pkgs, username, hostname, gpu, ... }: {
|
||||
{ pkgs, ... }: {
|
||||
# Enable sound with pipewire.
|
||||
sound.enable = true;
|
||||
hardware.pulseaudio.enable = false;
|
||||
|
|
|
@ -1,13 +1,16 @@
|
|||
{ stateversion, username, ... }: {
|
||||
{ username, stateVersion, ... }: {
|
||||
networking.firewall.allowedTCPPorts = [ 3390 ];
|
||||
|
||||
containers.desktop = {
|
||||
autoStart = true;
|
||||
privateNetwork = false;
|
||||
config = { config, pkgs, lib, ... }: {
|
||||
networking.hostName = "nixos-rdesktop";
|
||||
system.stateVersion = stateversion;
|
||||
system.stateVersion = stateVersion;
|
||||
|
||||
imports = [
|
||||
../common/desktops/xfce
|
||||
../users/${username}
|
||||
];
|
||||
|
||||
networking.firewall = {
|
||||
|
|
Loading…
Reference in a new issue