Compare commits
2 commits
dba80e2fd1
...
ab5fcfd802
Author | SHA1 | Date | |
---|---|---|---|
|
ab5fcfd802 | ||
|
48460fe71e |
|
@ -26,6 +26,7 @@
|
||||||
ripgrep
|
ripgrep
|
||||||
openssh
|
openssh
|
||||||
tea # gitea CLI (gh-like)
|
tea # gitea CLI (gh-like)
|
||||||
|
glab # gitlab CLI
|
||||||
fx # JSON viewer
|
fx # JSON viewer
|
||||||
glow # Markdown viewer
|
glow # Markdown viewer
|
||||||
nix-output-monitor # Nice nix output formatting
|
nix-output-monitor # Nice nix output formatting
|
||||||
|
|
|
@ -4,6 +4,14 @@
|
||||||
|
|
||||||
{ config, pkgs, lib, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
vmware = { pkgs, ... }: {
|
||||||
|
environment.systemPackages = [ pkgs.vmware-horizon-client ];
|
||||||
|
virtualisation.vmware.host = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
in
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
|
@ -13,6 +21,8 @@
|
||||||
../modules/personal/fonts
|
../modules/personal/fonts
|
||||||
# Encrypted DNS
|
# Encrypted DNS
|
||||||
../modules/services/edns
|
../modules/services/edns
|
||||||
|
|
||||||
|
vmware
|
||||||
];
|
];
|
||||||
|
|
||||||
# Secrets
|
# Secrets
|
||||||
|
|
Loading…
Reference in a new issue