Start work on ssh in home-manager, add vim meson

This commit is contained in:
Artemis Tosini 2021-01-30 19:22:04 +00:00
parent 3771b2a79e
commit 16a6035bef
Signed by: artemist
GPG key ID: ADFFE553DCBB831E
4 changed files with 15 additions and 2 deletions

@ -1 +1 @@
Subproject commit e8358125d98fc0128a02b7664f532447750fb930
Subproject commit 98d030f723e0a4a446e56b276573efb8bef422f5

View file

@ -1,7 +1,9 @@
{ ... }:
{
imports = [ ../externals/home-manager/nixos ];
imports = [
../externals/home-manager/nixos
];
home-manager = {
useUserPackages = true;
useGlobalPkgs = true;

View file

@ -18,6 +18,7 @@
vim-nix
vim-sensible
vim-toml
meson
gruvbox
coc-go

10
home/ssh.nix Normal file
View file

@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
programs.ssh = {
enable = true;
controlMaster = "auto";
controlPersist = "1h";
controlPath = "~/.ssh/sockets/%r@%n:%p";
};
}