chore: format the code
This commit is contained in:
@@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user