This commit is contained in:
LunarAkai 2025-03-14 21:15:05 +01:00
commit c7b296b96f
6 changed files with 36 additions and 19 deletions

View file

@ -1,17 +1,21 @@
{
inputs, lib, pkgs, config, outputs, ...
inputs,
lib,
pkgs,
config,
outputs,
...
}: {
imports = [
imports = [
];
];
programs = {
home-manager.enable = true;
};
programs = {
home-manager.enable = true;
};
home = {
username = lib.mkDefault "luna";
homeDirectory = lib.mkDefault "/home/${config.home.username}";
stateVersion = "24.11";
}
}
home = {
username = lib.mkDefault "luna";
homeDirectory = lib.mkDefault "/home/${config.home.username}";
stateVersion = "24.11";
};
}

View file

@ -6,7 +6,6 @@
pkgs,
...
}: {
imports = [
./common
];
@ -14,7 +13,7 @@
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = [
nixd # Nix LSP
alejandra # formatter
fd-find
];
}