Add remote desktop stuff to the desktop profile
This commit is contained in:
parent
c7622bd33f
commit
8b37cd3d2e
7 changed files with 17 additions and 7 deletions
|
@ -7,6 +7,7 @@
|
|||
./general
|
||||
./headless
|
||||
./production
|
||||
./rdesktop
|
||||
./school
|
||||
];
|
||||
}
|
||||
|
|
14
modules/home/programs/misc/rdesktop/default.nix
Normal file
14
modules/home/programs/misc/rdesktop/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
home = lib.mkIf config.home.desktop.enable {
|
||||
packages = with pkgs; [
|
||||
freerdp
|
||||
remmina
|
||||
];
|
||||
|
||||
persistence."${config.xdg.userDirs.extraConfig.XDG_PERSIST_DIR}".directories =
|
||||
with lib; with config.home; with config.xdg; [
|
||||
"data/${removePrefix "${homeDirectory}/" configHome}/remmina"
|
||||
];
|
||||
};
|
||||
}
|
|
@ -2,10 +2,8 @@
|
|||
{
|
||||
home = lib.mkIf config.home.school.enable {
|
||||
packages = with pkgs; [
|
||||
freerdp
|
||||
globalprotect-openconnect
|
||||
gpauth
|
||||
remmina
|
||||
];
|
||||
|
||||
shellAliases.seneca = "ssh jhampton1@matrix.senecapolytechnic.ca";
|
||||
|
@ -14,8 +12,6 @@
|
|||
with lib; with config.home; with config.xdg; [
|
||||
"school/${removePrefix "${homeDirectory}/" cacheHome}/gpclient"
|
||||
"school/${removePrefix "${homeDirectory}/" configHome}/com.yuezk.qt"
|
||||
"school/${removePrefix "${homeDirectory}/" configHome}/remmina"
|
||||
"school/.vmware"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
plugins = [
|
||||
"git"
|
||||
"history"
|
||||
"tmux"
|
||||
];
|
||||
};
|
||||
history = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue