pin oren to remote and remove old top level flake weirdness

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-10-22 00:50:18 -05:00
parent bbf84d2590
commit 8f2f522535
4 changed files with 102 additions and 781 deletions

View file

@ -1,24 +1,13 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
# Manually synced with common/flake.nix inputs
# =====
home-manager.url = "github:rycee/home-manager/release-25.05";
ragenix.url = "github:yaxitech/ragenix";
nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=latest";
hyprland.url = "github:hyprwm/Hyprland";
# ======
};
outputs =
{
nixpkgs,
home-manager,
ragenix,
nix-flatpak,
...
}@inputs:
}:
let
# Utilities
inherit (nixpkgs) lib;
@ -26,8 +15,6 @@
forAllSystems = lib.genAttrs lib.systems.flakeExposed;
# Create a mapping from system to corresponding nixpkgs : https://nixos.wiki/wiki/Overlays#In_a_Nix_flake
nixpkgsFor = forAllSystems (system: nixpkgs.legacyPackages.${system});
commonFlake = (import ./common/flake.nix).outputs inputs;
in
{
devShells = forAllSystems (
@ -69,6 +56,5 @@
};
}
);
}
// commonFlake;
};
}