diff --git a/nixos/desktop/configuration.nix b/nixos/desktop/configuration.nix index 42c7557..ea2eca0 100644 --- a/nixos/desktop/configuration.nix +++ b/nixos/desktop/configuration.nix @@ -55,32 +55,11 @@ }; }; - pkgs = [ - writeShellApplication - { - name = "dvd"; - - runtimeInputs = [echo direnv]; - - text = '' - echo "use flake \"github:the-nix-way/dev-templates?dir=$1\"" >> .envrc - direnv allow - ''; - } - writeShellApplication - { - name = "dvt"; - - runtimeInputs = [direnv nix]; - - text = '' - nix flake init -t "github:the-nix-way/dev-templates#$1" - direnv allow - ''; - } - ]; - environment.systemPackages = with pkgs; [ + # Custom tools + dvd + dvt + # System tools age alejandra @@ -115,9 +94,6 @@ # User tools noisetorch - - (callPackage ../shared/scripts/dvd.nix {}) - (callPackage ../shared/scripts/dvt.nix {}) ]; programs.direnv = {