forgejo good, nginx coming along

This commit is contained in:
Julian Sutter 2026-02-15 22:46:17 -08:00
parent 29eb6493be
commit 8fdbb33939
40 changed files with 153 additions and 493 deletions

8
flake.nix Normal file → Executable file
View file

@ -17,10 +17,9 @@
inputs.home-manager.follows = "home-manager";
};
octofriend = { url = "path:./appflakes/octofriend"; };
};
outputs = { self, nixpkgs, nixpkgs-unstable, nixos-hardware, home-manager, plasma-manager, octofriend }:
outputs = { self, nixpkgs, nixpkgs-unstable, nixos-hardware, home-manager, plasma-manager }:
let
localSystem = {
system = "x86_64-linux";
@ -32,7 +31,6 @@
config.allowUnfree = true;
};
inherit octofriend;
};
mkSystem = { modules, hardware ? [] }: nixpkgs.lib.nixosSystem {
@ -45,6 +43,7 @@
# Common desktop modules
commonDesktopModules = [
./systems/common.nix
./systems/desktop.nix
./users/jsutter.nix
./desktop/plasma.nix
./desktop/dev.nix
@ -78,7 +77,7 @@
modules = commonDesktopModules ++ [
./systems/labrizor.nix
./users/jsutter.nix
./desktop/3dprinting.nix
./desktop/3dprinting.nix
];
};
warp = mkSystem {
@ -86,6 +85,7 @@
./systems/common.nix
./users/jsutter.nix
./systems/warp.nix
./servers/forgejo.nix
];
};
};