hmm
This commit is contained in:
parent
63398d5b19
commit
f84930f9f3
8 changed files with 75 additions and 307 deletions
17
home-manager/luna/common/default.nix
Normal file
17
home-manager/luna/common/default.nix
Normal 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";
|
||||
}
|
||||
}
|
||||
20
home-manager/luna/hummingbird.nix
Normal file
20
home-manager/luna/hummingbird.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue