mirror of
https://github.com/ryanccn/flake.git
synced 2025-12-06 08:10:43 +01:00
feat: install nish
This commit is contained in:
parent
a303542b89
commit
6db2c7a756
6 changed files with 32 additions and 6 deletions
21
flake.lock
generated
21
flake.lock
generated
|
|
@ -241,6 +241,26 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"nish": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": [
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1694420535,
|
||||||
|
"narHash": "sha256-dbFegxUbjyfgqE7WLU/ixPfNszov0cGjxqIA1wlatXI=",
|
||||||
|
"owner": "ryanccn",
|
||||||
|
"repo": "nish",
|
||||||
|
"rev": "cd74ffc6ded40715af06ee4aa72d4810e0d38d5e",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "ryanccn",
|
||||||
|
"repo": "nish",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"nix-darwin": {
|
"nix-darwin": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": [
|
"nixpkgs": [
|
||||||
|
|
@ -308,6 +328,7 @@
|
||||||
"flake-utils": "flake-utils",
|
"flake-utils": "flake-utils",
|
||||||
"home-manager": "home-manager",
|
"home-manager": "home-manager",
|
||||||
"naersk": "naersk",
|
"naersk": "naersk",
|
||||||
|
"nish": "nish",
|
||||||
"nix-darwin": "nix-darwin",
|
"nix-darwin": "nix-darwin",
|
||||||
"nixpkgs": "nixpkgs",
|
"nixpkgs": "nixpkgs",
|
||||||
"nyoom": "nyoom",
|
"nyoom": "nyoom",
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,11 @@
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nish = {
|
||||||
|
url = "github:ryanccn/nish";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
|
||||||
nyoom = {
|
nyoom = {
|
||||||
url = "https://flakehub.com/f/ryanccn/nyoom/0.*.tar.gz";
|
url = "https://flakehub.com/f/ryanccn/nyoom/0.*.tar.gz";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
@ -101,7 +106,9 @@
|
||||||
./system.nix
|
./system.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
specialArgs = {inherit inputs;};
|
specialArgs = {
|
||||||
|
inherit inputs;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
checks = {
|
checks = {
|
||||||
|
|
|
||||||
|
|
@ -22,8 +22,6 @@ set -x DIRENV_LOG_FORMAT ""
|
||||||
fish_add_path "$HOME/.docker/bin"
|
fish_add_path "$HOME/.docker/bin"
|
||||||
# local bin
|
# local bin
|
||||||
fish_add_path "$HOME/.local/bin"
|
fish_add_path "$HOME/.local/bin"
|
||||||
# nish
|
|
||||||
fish_add_path "$HOME/dev/nish/bin"
|
|
||||||
|
|
||||||
# fish
|
# fish
|
||||||
set fish_greeting
|
set fish_greeting
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,3 @@ export PATH="$HOME/.docker/bin:$PATH"
|
||||||
|
|
||||||
# local bin
|
# local bin
|
||||||
export PATH="$HOME/.local/bin:$PATH"
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
|
|
||||||
# nish
|
|
||||||
export PATH="$HOME/dev/nish/bin:$PATH"
|
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,7 @@ in {
|
||||||
inputs.attic.overlays.default
|
inputs.attic.overlays.default
|
||||||
inputs.nyoom.overlays.default
|
inputs.nyoom.overlays.default
|
||||||
inputs.am.overlays.default
|
inputs.am.overlays.default
|
||||||
|
inputs.nish.overlays.default
|
||||||
inputs.fh.overlays.default
|
inputs.fh.overlays.default
|
||||||
flakeOverlays.ryan-mono-bin
|
flakeOverlays.ryan-mono-bin
|
||||||
flakeOverlays.ibm-plex
|
flakeOverlays.ibm-plex
|
||||||
|
|
|
||||||
|
|
@ -73,6 +73,8 @@
|
||||||
|
|
||||||
am
|
am
|
||||||
nyoom
|
nyoom
|
||||||
|
nish
|
||||||
|
|
||||||
spicetify-cli
|
spicetify-cli
|
||||||
exiftool
|
exiftool
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue