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,17 @@
{
inputs, lib, pkgs, config, outputs, ...
}: {
imports = [
];
programs = {
home-manager.enable = true;
};
home = {
username = lib.mkDefault "luna";
homeDirectory = lib.mkDefault "/home/${config.home.username}";
stateVersion = "24.11";
}
}

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
];
}