mod: add personal nix user repository

switched out all personal flakes, inputs
This commit is contained in:
2026-06-08 21:55:50 -04:00
parent 4acbd22078
commit ad717d64b8
7 changed files with 178 additions and 139 deletions

View File

@@ -17,10 +17,7 @@
url = "github:ezKEa/aagl-gtk-on-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
# My personal flakes
swaytreesave.url = "git+https://scm.wyattjmiller.com/wymiller/swaytreesave-nix.git";
vintage-story.url = "git+https://scm.wyattjmiller.com/wymiller/vintage-story-nix.git";
nur.url = "git+https://scm.wyattjmiller.com/wymiller/nur.git";
};
outputs = inputs @ {
@@ -32,14 +29,13 @@
rust-overlay,
go-overlay,
aagl,
swaytreesave,
vintage-story,
nur,
...
}: let
userName = "wyatt";
userEmail = "wyatt@wyattjmiller.com";
extraSpecialArgs = {
inherit userName userEmail swaytreesave;
inherit userName userEmail nur;
};
myOverlays = { ... }: {
@@ -86,7 +82,7 @@
nixosConfigurations."cloud" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit userName userEmail aagl vintage-story;
inherit userName userEmail aagl nur;
hostname = "cloud";
role = "workstation";
};
@@ -169,7 +165,7 @@
nixosConfigurations."thancred" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit userName userEmail vintage-story;
inherit userName userEmail nur;
hostname = "thancred";
role = "server";
};