Fix selene
This commit is contained in:
parent
893ec06b7c
commit
648bf43f76
15 changed files with 142 additions and 14 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
./hardware.nix
|
||||
./networking.nix # generated at runtime by nixos-infect
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -1,18 +1,23 @@
|
|||
{ agenix, jellyfin-exporter, nixpkgs, self, ... }:
|
||||
let
|
||||
system = "aarch64-linux";
|
||||
in
|
||||
nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
system = system;
|
||||
specialArgs = {
|
||||
# This selects the package for the current system and passes it
|
||||
exporter-pkg = jellyfin-exporter.packages.${self.system}.default;
|
||||
exporter-pkg = jellyfin-exporter.packages.${system}.default;
|
||||
system = system;
|
||||
};
|
||||
|
||||
modules = [
|
||||
./basesettings.nix
|
||||
./users.nix
|
||||
../../modules/servermodules/packages.nix
|
||||
(import ./nginx.nix "maxiemgeldhof.com")
|
||||
../../modules/servermodules/grafana.nix
|
||||
../../modules/servermodules/jellyfin.nix
|
||||
(import ../../modules/servermodules/nginx.nix "maxiemgeldhof.com")
|
||||
../../modules/servermodules/grafana/grafana.nix
|
||||
../../modules/servermodules/jellyfin/jellyfin.nix
|
||||
../../modules/servermodules/wireguard/wireguard-server.nix
|
||||
./volumes.nix
|
||||
agenix.nixosModules.default
|
||||
];
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
openssh.authorizedKeys.keys = [
|
||||
(builtins.readFile ../../keys/hetzner.pub)
|
||||
(builtins.readFile ../../keys/asus.pub)
|
||||
(builtins.readFile "../../keys/pacbook.pub")
|
||||
(builtins.readFile ../../keys/macbook.pub)
|
||||
];
|
||||
|
||||
extraGroups = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue