chore: format the code

This commit is contained in:
Gustavo "Guz" L. de Mello
2024-04-08 16:37:51 -03:00
parent 5ce99497d7
commit 99b1cbec6b
15 changed files with 128 additions and 148 deletions

View File

@@ -1,6 +1,4 @@
{ pkgs, ... }:
let
{pkgs, ...}: let
nixi = pkgs.writeShellScriptBin "nixi" ''
# npm-like command for nix
function nix-shell() {
@@ -9,14 +7,12 @@ let
}
nix-shell $1
'';
in
{
imports = [ ];
options.nixi = { };
in {
imports = [];
options.nixi = {};
config = {
home.packages = [
nixi
];
};
}

View File

@@ -1,6 +1,4 @@
{ pkgs, ... }:
let
{pkgs, ...}: let
nixx = pkgs.writeShellScriptBin "nixx" ''
# npx-like command for nix
function nix-run() {
@@ -9,14 +7,12 @@ let
}
nix-run $1
'';
in
{
imports = [ ];
options.nixx = { };
in {
imports = [];
options.nixx = {};
config = {
home.packages = [
nixx
];
};
}