This commit is contained in:
LunarAkai 2025-03-14 20:30:04 +01:00
commit f84930f9f3
8 changed files with 75 additions and 307 deletions

View file

@ -0,0 +1,20 @@
{
config,
inputs,
lib,
outputs,
pkgs,
...
}: {
imports = [
./common
];
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = [
nixd # Nix LSP
alejandra # formatter
];
}