1
0
Fork 0

Move web dev tools out of here and into shell.nix

This commit is contained in:
Aires 2024-03-24 13:43:20 -04:00
parent a1cc3e7f05
commit dba4f3d212
4 changed files with 0 additions and 22 deletions

View file

@ -14,7 +14,6 @@
role = "workstation";
apps = {
development.enable = true;
hugo.enable = true;
kdeconnect.enable = true;
media.enable = true;
office.enable = true;

View file

@ -29,7 +29,6 @@ in
};
dj.enable = true;
gaming.enable = true;
hugo.enable = true;
kdeconnect.enable = true;
media.enable = true;
office.enable = true;

View file

@ -3,7 +3,6 @@
./development.nix
./dj.nix
./gaming.nix
./hugo.nix
./kdeconnect.nix
./media.nix
./office.nix

View file

@ -1,19 +0,0 @@
{ pkgs, config, lib, ... }:
let
cfg = config.host.apps.hugo;
in
with lib;
{
options = {
host.apps.hugo.enable = mkEnableOption (mdDoc "Enables Hugo and webdev tools");
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
hugo
rsync
yarn
];
};
}