Add wayland clipboard, remove X11 forwarding from SSH
This commit is contained in:
parent
a6dc408032
commit
0203b73757
|
@ -1,7 +1,4 @@
|
||||||
{ ... }: {
|
{ ... }: {
|
||||||
imports = [
|
imports = [ ./common/work.nix ];
|
||||||
./common/work.nix
|
|
||||||
./desktop/gtk.nix
|
|
||||||
];
|
|
||||||
home.stateVersion = "22.11";
|
home.stateVersion = "22.11";
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
{ ... }: {
|
{ ... }: {
|
||||||
imports = [
|
imports = [ ./common/work.nix ];
|
||||||
./common/work.nix
|
|
||||||
./desktop/gtk.nix
|
|
||||||
];
|
|
||||||
home.stateVersion = "22.11";
|
home.stateVersion = "22.11";
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./common/personal.nix
|
./common/personal.nix
|
||||||
./desktop/gtk.nix
|
./desktop/gtk.nix
|
||||||
|
./desktop/wayland.nix
|
||||||
./env
|
./env
|
||||||
./tui
|
./tui
|
||||||
./gui/firefox
|
./gui/firefox
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./common/personal.nix
|
./common/personal.nix
|
||||||
./desktop/gtk.nix
|
./desktop/gtk.nix
|
||||||
|
./desktop/wayland.nix
|
||||||
./env
|
./env
|
||||||
./tui
|
./tui
|
||||||
./gui/firefox.nix
|
./gui/firefox.nix
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
../desktop/gtk.nix
|
||||||
|
../desktop/wayland.nix
|
||||||
../env
|
../env
|
||||||
../tui
|
../tui
|
||||||
../gui/chromium-wayland.nix
|
../gui/chromium-wayland.nix
|
||||||
|
|
4
home/desktop/wayland.nix
Normal file
4
home/desktop/wayland.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [ wl-clipboard ];
|
||||||
|
}
|
|
@ -21,6 +21,3 @@ Host freia???
|
||||||
|
|
||||||
Host heimdall* jdc* freia* batch
|
Host heimdall* jdc* freia* batch
|
||||||
User elitherl
|
User elitherl
|
||||||
ForwardX11 yes
|
|
||||||
ForwardX11Timeout 0
|
|
||||||
Compression yes
|
|
||||||
|
|
|
@ -4,5 +4,4 @@ Host legion xenia xenia.me.uk
|
||||||
User xenia
|
User xenia
|
||||||
HostName xenia.me.uk
|
HostName xenia.me.uk
|
||||||
Port 30
|
Port 30
|
||||||
ForwardX11 no
|
|
||||||
ForwardAgent yes
|
ForwardAgent yes
|
||||||
|
|
Loading…
Reference in a new issue