Give each host a separate home.nix

This commit is contained in:
NullBite 2024-01-01 13:06:57 -05:00
parent 07ac55c9f2
commit 4656bc4913
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A
3 changed files with 16 additions and 2 deletions

View File

@ -7,6 +7,4 @@
home.packages = with pkgs; [
btop
];
home.stateVersion = "23.11";
}

8
hosts/nullbox/home.nix Normal file
View File

@ -0,0 +1,8 @@
{ lib, pkgs, osConfig, ... }:
{
imports = [
../../home/common.nix
];
home.stateVersion = "23.11";
}

8
hosts/slab/home.nix Normal file
View File

@ -0,0 +1,8 @@
{ lib, pkgs, osConfig, ... }:
{
imports = [
../../home/common.nix
];
home.stateVersion = "23.11";
}