remmina: initial program
Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
parent
7e47ef95ef
commit
af4ace6146
2 changed files with 18 additions and 0 deletions
|
@ -64,6 +64,7 @@ with lib; {
|
|||
#// onedrive.enable = true;
|
||||
path-of-building.enable = true;
|
||||
rbw.enable = true;
|
||||
remmina.enable = true;
|
||||
rofi-rbw.enable = true;
|
||||
rofi.enable = true;
|
||||
seahorse.enable = true;
|
||||
|
|
17
options/custom/programs/remmina.nix
Normal file
17
options/custom/programs/remmina.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.custom.programs.remmina;
|
||||
in {
|
||||
options.custom.programs.remmina.enable = mkOption {default = false;};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home-manager.users.${config.custom.username} = {
|
||||
#!! Imperative configuration
|
||||
home.file.".config/remmina/remmina.pref".source = config.home-manager.users.${config.custom.username}.lib.file.mkOutOfStoreSymlink "${config.custom.sync}/linux/config/remmina/remmina.pref";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue