nixos/home/collections/personal/default.nix

28 lines
491 B
Nix

{ pkgs, ... }:
{
imports = [
../common/desktop.nix
../../git/personal.nix
];
programs.ssh.matchBlocks = {
"legion xenia xenia.me.uk" = {
user = "xenia";
hostname = "xenia.me.uk";
port = 30;
forwardAgent = true;
};
"vanguard" = {
user = "xenia";
hostname = "192.168.1.166";
forwardAgent = true;
};
};
home.packages = with pkgs; [
discord
element-desktop
neovide
nomachine-client
otpclient
];
}