|
|
@ -32,23 +32,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
nixosConfigurations =
|
|
|
|
nixosConfigurations =
|
|
|
|
let
|
|
|
|
let
|
|
|
|
nixosSystem = { config, system }: inputs.nixpkgs.lib.nixosSystem {
|
|
|
|
nixosSystem = { modules, system }: inputs.nixpkgs.lib.nixosSystem {
|
|
|
|
modules = [
|
|
|
|
modules = [
|
|
|
|
outputs.nixosModules.withDepends
|
|
|
|
outputs.nixosModules.withDepends
|
|
|
|
config
|
|
|
|
] ++ modules;
|
|
|
|
];
|
|
|
|
|
|
|
|
inherit system;
|
|
|
|
inherit system;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
in
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
"x13yz" = nixosSystem {
|
|
|
|
"x13yz" = nixosSystem {
|
|
|
|
config = {
|
|
|
|
modules = [
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
# hardware
|
|
|
|
hardware.cpu.type = "intel";
|
|
|
|
hardware.cpu.type = "intel";
|
|
|
|
hardware.graphics.intel.enable = true;
|
|
|
|
hardware.graphics.intel.enable = true;
|
|
|
|
system.stateVersion = "24.05";
|
|
|
|
|
|
|
|
x-banananetwork.frontend.enable = true;
|
|
|
|
x-banananetwork.frontend.enable = true;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
# as currently installed
|
|
|
|
|
|
|
|
system.stateVersion = "24.05";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
];
|
|
|
|
system = "x86_64-linux";
|
|
|
|
system = "x86_64-linux";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|