?
This commit is contained in:
parent
f84930f9f3
commit
c7b296b96f
6 changed files with 36 additions and 19 deletions
|
|
@ -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";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue