chore: remove unused nixi and nixx

This commit is contained in:
Guz
2024-10-01 18:56:35 -03:00
parent d73078e746
commit 3766c3b13e
2 changed files with 0 additions and 36 deletions

View File

@@ -1,18 +0,0 @@
{pkgs, ...}: let
nixi = pkgs.writeShellScriptBin "nixi" ''
# npm-like command for nix
function nix-shell() {
local pkg="$1"
nix shell "nixpkgs#$pkg"
}
nix-shell $1
'';
in {
imports = [];
options.nixi = {};
config = {
home.packages = [
nixi
];
};
}

View File

@@ -1,18 +0,0 @@
{pkgs, ...}: let
nixx = pkgs.writeShellScriptBin "nixx" ''
# npx-like command for nix
function nix-run() {
local pkg="$1"
nix run "nixpkgs#$pkg"
}
nix-run $1
'';
in {
imports = [];
options.nixx = {};
config = {
home.packages = [
nixx
];
};
}