nixos-configs/outputs.nix
matt1432 54385f2fa9
All checks were successful
Discord / discord commits (push) Has been skipped
chore: update flake.lock
Flake Inputs:
• Updated input 'agsV2':
    'github:Aylur/ags/f89742e' (2024-11-08)
  → 'github:Aylur/ags/5ec5640' (2024-11-12)

• Updated input 'astal':
    'github:Aylur/astal/302fcae' (2024-11-08)
  → 'github:Aylur/astal/2a9bb96' (2024-11-12)

• Updated input 'custom-sidebar-src':
    'github:elchininet/custom-sidebar/6b18c2e' (2024-11-10)
  → 'github:elchininet/custom-sidebar/a4b3aac' (2024-11-12)

• Updated input 'gpu-screen-recorder-src':
    'git+https://repo.dec05eba.com/gpu-screen-recorder?ref=refs/heads/master&rev=f1b4979' (2024-11-09)
  → 'git+https://repo.dec05eba.com/gpu-screen-recorder?ref=refs/heads/master&rev=c8fdf2f' (2024-11-10)

• Updated input 'hyprland':
    'github:hyprwm/Hyprland/dca75db' (2024-11-09)
  → 'github:hyprwm/Hyprland/a29cfa7' (2024-11-12)

• Updated input 'hyprland/hyprutils':
    'github:hyprwm/hyprutils/3ce0cde' (2024-11-07)
  → 'github:hyprwm/hyprutils/60d3dec' (2024-11-09)

• Updated input 'nix-gaming':
    'github:fufexan/nix-gaming/faf26ec' (2024-11-10)
  → 'github:fufexan/nix-gaming/e9adb42' (2024-11-12)

• Updated input 'nixpkgs-wayland':
    'github:nix-community/nixpkgs-wayland/b6023d8' (2024-11-10)
  → 'github:nix-community/nixpkgs-wayland/e25b62b' (2024-11-11)

• Updated input 'nvim-theme-src':
    'github:Mofiqul/dracula.nvim/94fa788' (2024-10-16)
  → 'github:Mofiqul/dracula.nvim/e6128ec' (2024-11-11)

• Updated input 'sops-nix':
    'github:Mic92/sops-nix/f1675e3' (2024-11-10)
  → 'github:Mic92/sops-nix/4c91d52' (2024-11-11)

• Updated input 'ts-for-gir-src':
    'github:gjsify/ts-for-gir/ffa9e9a' (2024-11-10)
  → 'github:gjsify/ts-for-gir/f703cc1' (2024-11-11)

• Updated input 'tuya-local-src':
    'github:make-all/tuya-local/175c1cc' (2024-11-09)
  → 'github:make-all/tuya-local/2739992' (2024-11-11)

Docker Images:
• nginx latest:
   sha256:28402db69fec7c17e179ea87882667f1e054391138f77ffaf0c3eb388efc3ffb
 → sha256:5026c85d87419b6c3622622570ea5c25ab9f9bb48961554658272bbc18e518b1

• quay.io/vaultwarden/server latest:
   sha256:7de8fd442afc26e4932a0b2521e2eec82db9f17667eef7b46fd9c2fa2e639de2
 → sha256:7271b8ceb729f9b46144c800125813dcc8d16bb6874217c48e59b22b45e47d7d
2024-11-11 23:45:04 -05:00

219 lines
4.9 KiB
Nix

{
inputs = let
inherit (import ./inputs.nix) mkDep mkInput otherInputs;
mainInputs = {
systems = mkInput {
owner = "nix-systems";
repo = "default-linux";
};
nixpkgs = mkInput {
owner = "NixOS";
repo = "nixpkgs";
ref = "nixos-unstable";
};
home-manager = mkDep {
owner = "nix-community";
repo = "home-manager";
};
nix-on-droid = mkDep {
owner = "nix-community";
repo = "nix-on-droid";
inputs.home-manager.follows = "home-manager";
};
sops-nix = mkDep {
owner = "Mic92";
repo = "sops-nix";
};
secrets = mkDep {
type = "git";
url = "ssh://git@git.nelim.org/matt1432/nixos-secrets";
inputs.sops-nix.follows = "sops-nix";
};
jovian = mkDep {
owner = "Jovian-Experiments";
repo = "Jovian-NixOS";
};
};
in
mainInputs // otherInputs;
outputs = inputs @ {
nixpkgs,
secrets,
self,
systems,
...
}: let
inherit (import ./lib {inherit inputs;}) mkVersion mkNixOS mkNixOnDroid mkPkgs;
perSystem = attrs:
nixpkgs.lib.genAttrs (import systems) (system:
attrs (mkPkgs {inherit system nixpkgs;}));
in {
nixosModules = import ./nixosModules self;
homeManagerModules = import ./homeManagerModules self;
nixosConfigurations = {
# Desktops
wim = mkNixOS {
extraModules = [
./devices/wim
secrets.nixosModules.default
];
};
binto = mkNixOS {
cudaSupport = true;
extraModules = [./devices/binto];
};
bbsteamie = mkNixOS {extraModules = [./devices/bbsteamie];};
# NAS
nos = mkNixOS {
cudaSupport = true;
extraModules = [
./devices/nos
secrets.nixosModules.nos
];
};
# Build / test server
servivi = mkNixOS {
extraModules = [
./devices/servivi
secrets.nixosModules.servivi
];
};
# Home-assistant
homie = mkNixOS {
extraModules = [
./devices/homie
secrets.nixosModules.homie
];
};
# Cluster
thingone = mkNixOS {
extraModules = [
(import ./devices/cluster "thingone")
secrets.nixosModules.thingy
];
};
thingtwo = mkNixOS {
extraModules = [
(import ./devices/cluster "thingtwo")
secrets.nixosModules.thingy
];
};
live-image = mkNixOS {
extraModules = [
"${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix"
{
vars = {
mainUser = "nixos";
hostName = "nixos";
};
}
];
};
};
nixOnDroidConfigurations.default =
mkNixOnDroid [./devices/android];
legacyPackages =
perSystem (pkgs:
import ./legacyPackages {inherit inputs mkVersion pkgs;});
packages =
perSystem (pkgs:
import ./packages {inherit inputs mkVersion pkgs;});
overlays = import ./overlays {};
apps =
perSystem (pkgs:
import ./apps {inherit inputs pkgs;});
devShells = perSystem (pkgs: let
bumpNpmDeps = pkgs.writeShellApplication {
name = "bumpNpmDeps";
runtimeInputs = builtins.attrValues {
inherit
(pkgs)
prefetch-npm-deps
nodejs_latest
;
};
text = ''
npm i --package-lock-only || true # this command will fail but still updates the main lockfile
prefetch-npm-deps ./package-lock.json
'';
};
in {
default = pkgs.mkShell {
packages = [
(pkgs.writeShellScriptBin "mkIso" ''
isoConfig="nixosConfigurations.live-image.config.system.build.isoImage"
nom build $(realpath /etc/nixos)#$isoConfig
'')
];
};
netdaemon = pkgs.mkShell {
packages = [
pkgs.dotnet-sdk_8
];
};
node = pkgs.mkShell {
packages =
(builtins.attrValues {
inherit
(pkgs)
nodejs_latest
typescript
;
})
++ [bumpNpmDeps];
};
subtitles-dev = pkgs.mkShell {
packages =
(builtins.attrValues {
inherit
(pkgs)
nodejs_latest
ffmpeg-full
typescript
;
inherit
(pkgs.nodePackages)
ts-node
;
})
++ [bumpNpmDeps];
};
});
# For nix-fast-build. I use a custom output to alleviate eval time of this flake. ie. when doing nix flake show
nixFastChecks =
perSystem (pkgs:
import ./checks {inherit pkgs self;});
formatter = perSystem (pkgs: pkgs.alejandra);
};
}