fix setting
This commit is contained in:
parent
970de0bd95
commit
f43d436602
1 changed files with 32 additions and 30 deletions
62
flake.nix
62
flake.nix
|
@ -41,42 +41,44 @@
|
|||
usersDir = ./users;
|
||||
};
|
||||
|
||||
ypkgs = nypkgs.legacyPackages.${settings.system.architecture};
|
||||
ypkgs = nypkgs.legacyPackages.x86_64-linux;
|
||||
ylib = ypkgs.lib;
|
||||
in
|
||||
{
|
||||
nixosConfigurations = {
|
||||
gpdPocket3 = nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
gpdPocket3 = nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [ ./systems/_common/configuration.nix ./systems/gpdPocket3/configuration.nix ];
|
||||
specialArgs = inputs // { inherit ylib;
|
||||
settings = sett // {
|
||||
system = {
|
||||
# TODO remove these probably not needed anymore with per machine specified here
|
||||
hostname = "gpdPocket3";
|
||||
architecture = "x86_64-linux";
|
||||
timeZone = "America/Chicago"; # TODO roaming?
|
||||
defaultLocale = "en_US.UTF-8";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
joe = nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = inputs // {
|
||||
inherit ylib;
|
||||
settings = sett // {
|
||||
system = {
|
||||
# TODO remove these probably not needed anymore with per machine specified here
|
||||
hostname = "gpdPocket3";
|
||||
architecture = "x86_64-linux";
|
||||
timeZone = "America/Chicago"; # TODO roaming?
|
||||
defaultLocale = "en_US.UTF-8";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
joe = nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [ ./systems/_common/configuration.nix ./systems/joe/configuration.nix ];
|
||||
specialArgs = inputs // { inherit ylib;
|
||||
settings = sett // {
|
||||
system = {
|
||||
# TODO remove these probably not needed anymore with per machine specified here
|
||||
hostname = "joe";
|
||||
architecture = "x86_64-linux";
|
||||
# TODO remove?
|
||||
timeZone = "America/Chicago";
|
||||
defaultLocale = "en_US.UTF-8";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
specialArgs = inputs // {
|
||||
inherit ylib;
|
||||
settings = sett // {
|
||||
system = {
|
||||
# TODO remove these probably not needed anymore with per machine specified here
|
||||
hostname = "joe";
|
||||
architecture = "x86_64-linux";
|
||||
# TODO remove?
|
||||
timeZone = "America/Chicago";
|
||||
defaultLocale = "en_US.UTF-8";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
# homeConfigurations = { };
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue