mirror of
https://github.com/RGBCube/ncc
synced 2025-07-29 19:17:45 +00:00
Fix some build errors
This commit is contained in:
parent
bc16e33c5d
commit
0aa423e152
4 changed files with 12 additions and 16 deletions
22
flake.nix
22
flake.nix
|
@ -111,20 +111,16 @@
|
|||
|
||||
specialArgs = ulib;
|
||||
|
||||
importConfigurations = hosts: builtins.concatMap (host: {
|
||||
${host} = lib.nixosSystem {
|
||||
inherit specialArgs;
|
||||
importConfiguration = host: lib.nixosSystem {
|
||||
inherit specialArgs;
|
||||
|
||||
modules = [
|
||||
homeManager.nixosModules.default
|
||||
(defaultConfiguration host)
|
||||
./machines/${host}
|
||||
];
|
||||
};
|
||||
}) hosts;
|
||||
modules = [
|
||||
homeManager.nixosModules.default
|
||||
(defaultConfiguration host)
|
||||
./machines/${host}
|
||||
];
|
||||
};
|
||||
in {
|
||||
nixosConfigurations = importConfigurations [
|
||||
"enka"
|
||||
];
|
||||
nixosConfigurations.enka = importConfiguration "enka";
|
||||
});
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, systemConfiguration, homeConfiguration, imports, ... }: lib.recursiveUpdate3
|
||||
{ recursiveUpdate3, systemConfiguration, homeConfiguration, imports, ... }: recursiveUpdate3
|
||||
|
||||
(systemConfiguration {
|
||||
boot.loader = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, pkgs, hyprland, theme, systemConfiguration, homeConfiguration, homePackages, enabled, ... }: lib.recursiveUpdate3
|
||||
{ pkgs, recursiveUpdate3, hyprland, theme, systemConfiguration, homeConfiguration, homePackages, enabled, ... }: recursiveUpdate3
|
||||
|
||||
(systemConfiguration {
|
||||
hardware.opengl = enabled {};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, pkgs, systemConfiguration, homeConfiguration, homePackages, enabled, ... }: lib.recursiveUpdate3
|
||||
{ pkgs, recursiveUpdate3, systemConfiguration, homeConfiguration, homePackages, enabled, ... }: recursiveUpdate3
|
||||
|
||||
(systemConfiguration {
|
||||
users.defaultUserShell = pkgs.nushell;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue