feat: gets spaceport working
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
{ lib, inputs, nixpkgs-23-11, homeManager, homeManager-23-11, NixOS-WSL, customPackageOverlays, ... }:
|
||||
{ lib, inputs, nixpkgs-23-11, homeManager, homeManager-23-11, NixOS-WSL, customPackageOverlay, ... }:
|
||||
{
|
||||
"maxos" = lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {
|
||||
inherit customPackageOverlays;
|
||||
inherit customPackageOverlay;
|
||||
};
|
||||
modules = [
|
||||
./maxos/configuration.nix
|
||||
@@ -23,7 +23,7 @@
|
||||
"nixosWSL" = nixpkgs-23-11.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {
|
||||
inherit customPackageOverlays;
|
||||
inherit customPackageOverlay;
|
||||
};
|
||||
modules = [
|
||||
./nixosWSL/configuration.nix
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
# your system. Help is available in the configuration.nix(5) man page
|
||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||
|
||||
{ pkgs, customPackageOverlays, ... }:
|
||||
{ pkgs, customPackageOverlay, ... }:
|
||||
|
||||
let
|
||||
custom-fonts = import ../../fonts { inherit pkgs; };
|
||||
@@ -109,7 +109,9 @@ in
|
||||
programs.zsh.enable = true;
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
nixpkgs.overlays = customPackageOverlays;
|
||||
nixpkgs.overlays = [
|
||||
customPackageOverlay
|
||||
];
|
||||
|
||||
# Some programs need SUID wrappers, can be configured further or are
|
||||
# started in user sessions.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ pkgs, customPackageOverlays, modulesPath, ... }:
|
||||
{ pkgs, customPackageOverlay, modulesPath, ... }:
|
||||
|
||||
let
|
||||
custom-fonts = import ../../fonts { inherit pkgs; };
|
||||
@@ -35,7 +35,9 @@ in
|
||||
'';
|
||||
|
||||
|
||||
nixpkgs.overlays = customPackageOverlays;
|
||||
nixpkgs.overlays = [
|
||||
customPackageOverlay
|
||||
];
|
||||
|
||||
system.stateVersion = "22.05";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user