refactor: make koumakan overlays global

Changed files
+6 -10
global
overlays
overlays
systems
+5
global/overlays/default.nix
···
···
+
inputs:
+
with inputs; [
+
mystia.overlays.default
+
attic.overlays.default
+
]
-1
overlays/default.nix
···
-
[]
···
+1 -9
systems/koumakan/configuration.nix
···
-
# Edit this configuration file to define what should be installed on
-
# your system. Help is available in the configuration.nix(5) man page
-
# and in the NixOS manual (accessible by running `nixos-help`).
{inputs, ...}: {
imports = [
# Include the results of the hardware scan.
···
./services
];
-
nixpkgs.overlays =
-
import ../../overlays
-
++ (with inputs; [
-
mystia.overlays.default
-
attic.overlays.default
-
]);
boot.loader.efi = {
canTouchEfiVariables = true;
···
{inputs, ...}: {
imports = [
# Include the results of the hardware scan.
···
./services
];
+
nixpkgs.overlays = import ../../global/overlays inputs;
boot.loader.efi = {
canTouchEfiVariables = true;