From dba4f3d212bd728a445157469a82c869e14e5ffb Mon Sep 17 00:00:00 2001 From: Andre Date: Sun, 24 Mar 2024 13:43:20 -0400 Subject: [PATCH] Move web dev tools out of here and into shell.nix --- hosts/Dimaga/default.nix | 1 - hosts/Shura/default.nix | 1 - modules/apps/default.nix | 1 - modules/apps/hugo.nix | 19 ------------------- 4 files changed, 22 deletions(-) delete mode 100644 modules/apps/hugo.nix diff --git a/hosts/Dimaga/default.nix b/hosts/Dimaga/default.nix index 4a1acb2..3caf383 100644 --- a/hosts/Dimaga/default.nix +++ b/hosts/Dimaga/default.nix @@ -14,7 +14,6 @@ role = "workstation"; apps = { development.enable = true; - hugo.enable = true; kdeconnect.enable = true; media.enable = true; office.enable = true; diff --git a/hosts/Shura/default.nix b/hosts/Shura/default.nix index 0fdecb9..cddd790 100644 --- a/hosts/Shura/default.nix +++ b/hosts/Shura/default.nix @@ -29,7 +29,6 @@ in }; dj.enable = true; gaming.enable = true; - hugo.enable = true; kdeconnect.enable = true; media.enable = true; office.enable = true; diff --git a/modules/apps/default.nix b/modules/apps/default.nix index 09e88a8..eb6c3b5 100644 --- a/modules/apps/default.nix +++ b/modules/apps/default.nix @@ -3,7 +3,6 @@ ./development.nix ./dj.nix ./gaming.nix - ./hugo.nix ./kdeconnect.nix ./media.nix ./office.nix diff --git a/modules/apps/hugo.nix b/modules/apps/hugo.nix deleted file mode 100644 index c623d56..0000000 --- a/modules/apps/hugo.nix +++ /dev/null @@ -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 - ]; - }; -} \ No newline at end of file