the great update

This commit is contained in:
2025-03-07 17:04:41 +09:00
parent 442f46f622
commit 6216fcd751
77 changed files with 732 additions and 305 deletions

10
user/wrapped/default.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs, config, ... }:
let
packages = {
alacritty = pkgs.callPackage ./alacritty {};
bash = pkgs.callPackage ./bash {};
};
in
{
environment.systemPackages = builtins.attrValues packages;
}