This commit is contained in:
2026-01-21 22:16:15 -06:00
parent 7949acb8f0
commit 191a54670e
2 changed files with 23 additions and 15 deletions

View File

@@ -1,4 +1,4 @@
{ lib, ... }:
{ lib, inputs, ... }:
{
@@ -6,6 +6,20 @@
homeconfig = {
graphical = lib.mkDefault false;
minimal = lib.mkDefault false;
hyprland.enable = false;
};
nix = {
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
settings = {
experimental-features = [ "nix-command" "flakes" ];
builders = "ssh://builder x86_64-linux,aarch64-linux /run/secrets/remoteBuildKey 1 1 nixos-test,benchmark,big-parallel,kvm - -";
builders-use-substituters = true;
};
};
programs.home-manager.enable = true;
};
}