refactor: move nixpkgs overlay out of profiles/base and apply to desired hosts

This commit is contained in:
2025-07-05 12:37:03 +02:00
parent 10c5f79fab
commit 6fb95c5a84
2 changed files with 5 additions and 3 deletions

View File

@ -11,6 +11,11 @@
../../users/leona
];
# add nixpkgs overlay
nixpkgs.overlays = [
(import ../../pkgs)
];
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;

View File

@ -1,7 +1,4 @@
{ inputs, pkgs, ...}: {
nixpkgs.overlays = [
(import ../../pkgs)
];
nixpkgs.config.allowUnfree = true;
nix.settings.trusted-users = [ "root" "@wheel" ];
nix.registry.nixpkgs.flake = inputs.nixpkgs;