Let ssh config work in distrobox
This commit is contained in:
@@ -1,6 +1,12 @@
|
|||||||
{ lib, ... }:
|
{ lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
# Workaround to set the config value to user read-only
|
||||||
|
# This allows things like SSH in distrobox to read the config file just fine
|
||||||
|
home.file.".ssh/config" = {
|
||||||
|
target = ".ssh/config_source";
|
||||||
|
onChange = ''cat ~/.ssh/config_source > ~/.ssh/config && chmod 400 ~/.ssh/config'';
|
||||||
|
};
|
||||||
programs.ssh = {
|
programs.ssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
serverAliveInterval = 60;
|
serverAliveInterval = 60;
|
||||||
|
|||||||
@@ -48,6 +48,7 @@
|
|||||||
bind # For things like nslookup
|
bind # For things like nslookup
|
||||||
create_ssl
|
create_ssl
|
||||||
darktable
|
darktable
|
||||||
|
distrobox
|
||||||
expect
|
expect
|
||||||
gimp
|
gimp
|
||||||
gparted
|
gparted
|
||||||
|
|||||||
Reference in New Issue
Block a user