1
0

feat: initial commit; NixOS Era

This commit is contained in:
2025-11-20 22:13:05 +01:00
commit 8d0bddf680
46 changed files with 2044 additions and 0 deletions

23
pkgs/fish/default.nix Normal file
View File

@@ -0,0 +1,23 @@
{
pkgs ? import <nixpkgs> { },
lib ? pkgs.lib,
...
}:
pkgs.stdenv.mkDerivation rec {
pname = "fish-config";
version = "1.0";
src = builtins.path {
path = ./.;
name = pname;
};
installPhase = ''
mkdir -p $out
cp -r ${src}/* $out/
'';
dontUnpack = true;
dontBuild = true;
}