chore: prepare config structure for multiple hosts

This commit is contained in:
2026-01-26 16:57:23 +01:00
parent 954461d2c4
commit 9642bae67d
3 changed files with 16 additions and 9 deletions
@@ -1,12 +1,9 @@
# This is your home-manager configuration file
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
{
inputs,
outputs,
...
}:
{
# You can import other home-manager modules here
imports = [
outputs.homeManagerModules
@@ -24,11 +21,6 @@
};
};
home = {
username = "leonhard";
homeDirectory = "/home/leonhard";
};
programs.home-manager.enable = true;
# Nicely reload system units when changing configs
+15
View File
@@ -0,0 +1,15 @@
{
inputs,
outputs,
...
}:
{
imports = [
(import ../base.nix { inherit inputs outputs; })
];
home = {
username = "leonhard";
homeDirectory = "/home/leonhard";
};
}