nix/flake.nix

76 lines
2 KiB
Nix
Raw Permalink Normal View History

2026-02-12 18:53:24 +00:00
{
description = "main nixos flake :3";
inputs = {
systems.url = "github:nix-systems/default";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
2026-02-13 23:27:35 +10:00
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-staging.url = "github:NixOS/nixpkgs/staging-next";
nixpkgs-master.url = "github:NixOS/nixpkgs/master";
2026-02-12 18:53:24 +00:00
home-manager = {
url = "github:nix-community/home-manager/master";
2026-02-13 23:27:35 +10:00
inputs.nixpkgs.follows = "nixpkgs-unstable";
2026-02-12 18:53:24 +00:00
};
cerulean = {
url = "git+https://tearforge.net/cry/cerulean";
2026-02-12 18:53:24 +00:00
inputs = {
systems.follows = "systems";
nixpkgs.follows = "nixpkgs";
2026-02-12 18:53:24 +00:00
};
};
2026-02-16 02:30:26 +00:00
microvm = {
url = "github:microvm-nix/microvm.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
2026-02-12 18:53:24 +00:00
cachyos.url = "github:xddxdd/nix-cachyos-kernel";
nix-alien = {
# silly alien :3
url = "github:thiagokokada/nix-alien";
# inputs.nixpkgs.follows = "nixpkgs";
};
# wm/de/apps/theming flakes
hyprland-git = {
url = "github:hyprwm/Hyprland/25250527793eb04bb60f103abe7f06370b9f6e1c";
#url = "github:hyprwm/Hyprland";
};
hyprland-plugins = {
url = "github:hyprwm/hyprland-plugins";
inputs.hyprland.follows = "hyprland-git";
};
nixcats.url = "github:BirdeeHub/nixCats-nvim";
awww.url = "git+https://codeberg.org/LGFae/awww";
zen.url = "github:0xc000022070/zen-browser-flake";
iamb.url = "github:ulyssa/iamb";
nixcord.url = "github:FlameFlag/nixcord";
millennium.url = "github:trivaris/millennium?dir=packages/nix";
2026-02-14 18:16:29 +10:00
spicetify-nix = {
url = "github:Gerg-L/spicetify-nix";
inputs = {
systems.follows = "systems";
nixpkgs.follows = "nixpkgs-unstable";
};
};
2026-02-12 18:53:24 +00:00
# temp theme until i bother creating my own </3
sddm-silent = {
url = "github:uiriansan/SilentSDDM";
2026-02-13 23:27:35 +10:00
inputs.nixpkgs.follows = "nixpkgs-unstable";
2026-02-12 18:53:24 +00:00
};
};
nixConfig = {
extra-experimental-features = "pipe-operators";
};
2026-02-13 23:27:35 +10:00
outputs = inputs:
import ./snow.nix inputs;
2026-02-12 18:53:24 +00:00
}