fix setting

This commit is contained in:
= 2024-03-31 19:50:11 -05:00
parent 970de0bd95
commit f43d436602

View file

@ -41,7 +41,7 @@
usersDir = ./users; usersDir = ./users;
}; };
ypkgs = nypkgs.legacyPackages.${settings.system.architecture}; ypkgs = nypkgs.legacyPackages.x86_64-linux;
ylib = ypkgs.lib; ylib = ypkgs.lib;
in in
{ {
@ -49,7 +49,8 @@
gpdPocket3 = nixosSystem { gpdPocket3 = nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ ./systems/_common/configuration.nix ./systems/gpdPocket3/configuration.nix ]; modules = [ ./systems/_common/configuration.nix ./systems/gpdPocket3/configuration.nix ];
specialArgs = inputs // { inherit ylib; specialArgs = inputs // {
inherit ylib;
settings = sett // { settings = sett // {
system = { system = {
# TODO remove these probably not needed anymore with per machine specified here # TODO remove these probably not needed anymore with per machine specified here
@ -64,7 +65,8 @@
joe = nixosSystem { joe = nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ ./systems/_common/configuration.nix ./systems/joe/configuration.nix ]; modules = [ ./systems/_common/configuration.nix ./systems/joe/configuration.nix ];
specialArgs = inputs // { inherit ylib; specialArgs = inputs // {
inherit ylib;
settings = sett // { settings = sett // {
system = { system = {
# TODO remove these probably not needed anymore with per machine specified here # TODO remove these probably not needed anymore with per machine specified here