From e712b4a48691491da9cd742c46bd910457216da8 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Thu, 18 Jan 2024 12:05:44 +0100 Subject: [PATCH] Alright that was some drafts that I don't need --- nixos/desktop/configuration.nix | 32 ++++---------------------------- 1 file changed, 4 insertions(+), 28 deletions(-) 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 = {