My Nix Configuration

[systems] fix nixpkgs eval error

pyrox.dev c161c85b 8e627237

verified
Changed files
+8 -3
systems
x86_64-linux
marvin
prefect
thought
zaphod
+2 -1
systems/x86_64-linux/marvin/default.nix
···
-
{ ... }:
+
{ system, ... }:
{
imports = [
# Machine-specific configurations.
···
./services/zfs.nix
];
nix.settings.max-jobs = 12;
+
nixpkgs.hostPlatform.system = system;
networking = {
networkmanager = {
enable = true;
+2 -1
systems/x86_64-linux/prefect/default.nix
···
-
{ pkgs, ... }:
+
{ pkgs, system, ... }:
{
imports = [
# Machine-specific configurations.
···
./services/tailscale.nix
# ./services/zerotier.nix
];
+
nixpkgs.hostPlatform.system = system;
fileSystems = {
"/" = {
fsType = "ext4";
+2 -1
systems/x86_64-linux/thought/default.nix
···
-
{ pkgs, ... }:
+
{ pkgs, system, ... }:
{
imports = [
# Machine-specific configurations.
···
./services/prometheus.nix
./services/tailscale.nix
];
+
nixpkgs.hostPlatform.system = system;
py = {
users.default.enable = true;
programs = {
+2
systems/x86_64-linux/zaphod/default.nix
···
+
{ system, ... }:
{
imports = [
# Machine specific configs
···
# Agenix secrets
# ./secret-files.nix
];
+
nixpkgs.hostPlatform.system = system;
py = {
users.default.enable = true;
programs = {