75 lines
2 KiB
Nix
75 lines
2 KiB
Nix
{
|
|
description = "main nixos flake :3";
|
|
|
|
inputs = {
|
|
systems.url = "github:nix-systems/default";
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
|
|
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
nixpkgs-staging.url = "github:NixOS/nixpkgs/staging-next";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager/master";
|
|
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
|
};
|
|
|
|
cerulean = {
|
|
url = "github:emilelcb/Cerulean";
|
|
inputs = {
|
|
systems.follows = "systems";
|
|
nixpkgs.follows = "nixpkgs-unstable";
|
|
nixpkgs-unstable.follows = "nixpkgs-unstable";
|
|
};
|
|
};
|
|
|
|
microvm = {
|
|
url = "github:microvm-nix/microvm.nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
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";
|
|
spicetify-nix = {
|
|
url = "github:Gerg-L/spicetify-nix";
|
|
inputs = {
|
|
systems.follows = "systems";
|
|
nixpkgs.follows = "nixpkgs-unstable";
|
|
};
|
|
};
|
|
|
|
# temp theme until i bother creating my own </3
|
|
sddm-silent = {
|
|
url = "github:uiriansan/SilentSDDM";
|
|
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
|
};
|
|
};
|
|
|
|
nixConfig = {
|
|
extra-experimental-features = "pipe-operators";
|
|
};
|
|
|
|
outputs = inputs:
|
|
import ./snow.nix inputs;
|
|
}
|