70 lines
1.8 KiB
Nix
70 lines
1.8 KiB
Nix
{
|
|
inputs = {
|
|
self.submodules = true;
|
|
nixpkgs-stable-nixos.url = "github:nixos/nixpkgs/nixos-25.05";
|
|
nixverse = {
|
|
url = "github:hgl/nixverse";
|
|
inputs.nixpkgs.follows = "nixpkgs-stable-nixos";
|
|
};
|
|
|
|
disko-stable-nixos = {
|
|
url = "github:nix-community/disko";
|
|
inputs.nixpkgs.follows = "nixpkgs-stable-nixos";
|
|
};
|
|
|
|
home-manager-stable-nixos = {
|
|
#url = "github:nix-community/home-manager?ref=7aae0ee71a17b19708b93b3ed448a1a0952bf111";
|
|
url = "github:nix-community/home-manager?ref=873c5b2dc5c9387bf67e59a12abc4de12a4b8697";
|
|
#url = "github:nix-community/home-manager?ref=f5098b074051d1ae0e919adf434a60fc3f23347b";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
hyprpanel-stable-nixos = {
|
|
url = "github:Jas-SinghFSU/HyprPanel?rev=436dcbfcf2458784203d83c4b96e7b0c3fb66762";
|
|
};
|
|
|
|
nix-flatpak-stable-nixos = {
|
|
url = "github:gmodena/nix-flatpak/?ref=latest";
|
|
};
|
|
|
|
stylix-stable-nixos = {
|
|
#stylix.url = "github:danth/stylix/release-25.05";
|
|
# Pin stylix to the last working version.
|
|
url = "github:danth/stylix?ref=75411fe2b90f67bfb4a2ad9cc3b1379758b64dbb";
|
|
};
|
|
|
|
zen-browser-stable-nixos = {
|
|
url = "github:0xc000022070/zen-browser-flake";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs =
|
|
{
|
|
self,
|
|
nixpkgs,
|
|
nixverse,
|
|
...
|
|
}:
|
|
nixverse.load self {
|
|
nixverse = {
|
|
inheritLib = true;
|
|
};
|
|
devShells = nixverse.lib.forAllSystems (
|
|
system:
|
|
let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in
|
|
{
|
|
default = pkgs.mkShellNoCC {
|
|
packages = with pkgs; [
|
|
nil
|
|
nixfmt-rfc-style
|
|
nixverse.packages.${system}.nixverse
|
|
];
|
|
};
|
|
}
|
|
);
|
|
};
|
|
}
|