Add homeConfigurations

This commit is contained in:
Greg Hellings
2025-12-16 19:45:17 -06:00
parent 3dc109b361
commit 50aa005349
5 changed files with 14 additions and 5 deletions
+7 -1
View File
@@ -1,4 +1,5 @@
{
metadata,
overlays,
top,
}:
@@ -25,7 +26,12 @@ let
./home.nix
];
extraSpecialArgs = {
inherit top host username;
inherit
top
host
username
metadata
;
nixvim = top.nixvimunstable;
gui = false;
gnome = false;
+1 -1
View File
@@ -5,7 +5,7 @@
development = true;
gnome = true;
gui = true;
vscodium = true;
vscodium = false;
zed = true;
};
home.packages = with pkgs; [
+1 -1
View File
@@ -1,7 +1,7 @@
{ pkgs, ... }:
{
greg.vscodium.enable = true;
greg.vscodium.enable = false;
home.packages = with pkgs; [ brew ];
}