Update to Nix setup and clean up links

This commit is contained in:
Bad Manners 2026-01-10 20:11:57 -03:00
parent fa626826ad
commit 115bb5c485
9 changed files with 1251 additions and 151 deletions

30
flake.nix Normal file
View file

@ -0,0 +1,30 @@
{
description = "badmanners.xyz";
inputs = {
nixpkgs.url = "nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
flakedPkgs = pkgs;
devShells.default = pkgs.mkShell {
packages = [
pkgs.bun
pkgs.rsync
];
};
}
);
}