1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2024-12-29 02:03:54 +00:00
ultima/flake.nix

84 lines
2.3 KiB
Nix
Raw Normal View History

2024-11-21 09:24:15 +00:00
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; # UNSTABLE
2024-12-06 12:57:22 +00:00
nixpkgsStable.url = "github:nixos/nixpkgs/release-24.11"; # 24.11
nixpkgsMaster.url = "github:nixos/nixpkgs/master"; # MASTER
2024-11-21 09:24:15 +00:00
nur.url = "github:nix-community/NUR"; # NUR
2024-12-20 13:10:11 +00:00
impermanence.url = "github:nix-community/impermanence"; # IMPERA
2024-11-24 08:17:07 +00:00
hardware.url = "github:NixOS/nixos-hardware/master"; # HARDWARE
parts.url = "github:hercules-ci/flake-parts"; # PARTS
gaming.url = "github:fufexan/nix-gaming"; # GAMING
2024-12-03 14:20:37 +00:00
transg.url = "github:PanAeon/transg-tui"; # TRANSG
2024-11-21 09:24:15 +00:00
hyprland.url = "github:hyprwm/Hyprland"; # HYPRLAND
stylix.url = "github:danth/stylix"; # STYLIX
home-manager = {
# HM
2024-11-21 09:24:15 +00:00
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
disko = {
# DECLARATIVE DISK PART
2024-11-21 09:24:15 +00:00
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-12-20 13:10:11 +00:00
nypkgs = {
url = "github:yunfachi/nypkgs";
inputs.nixpkgs.follows = "nixpkgs";
};
zen = {
# COOL BROWSER
url = "github:0xc000022070/zen-browser-flake";
2024-11-21 09:24:15 +00:00
inputs.nixpkgs.follows = "nixpkgs";
};
spicetify = {
# SPOTIFY
2024-11-21 09:24:15 +00:00
url = "github:Gerg-L/spicetify-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
tgt = {
# TUI TELEGRAM
2024-11-24 03:17:16 +00:00
url = "github:FedericoBruzzone/tgt";
inputs.nixpkgs.follows = "nixpkgs";
};
firefox-addons = {
# FIREFOX
2024-11-21 09:24:15 +00:00
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
inputs.nixpkgs.follows = "nixpkgs";
};
winapps = {
# DOCKER WINDA
url = "github:winapps-org/winapps";
inputs.nixpkgs.follows = "nixpkgs";
};
phani = {
# ONLY FOR QBITUI LOL
2024-12-03 14:20:37 +00:00
url = "github:phanirithvij/nur-packages";
inputs.nixpkgs.follows = "nixpkgs";
};
cursors = {
# COLORIZE CUSRSOR
2024-11-27 10:37:54 +00:00
url = "github:LilleAila/nix-cursors";
inputs.nixpkgs.follows = "nixpkgs";
};
design = {
# DISIGNING REPO
2024-11-24 08:17:07 +00:00
url = "sourcehut:~neverness/design?ref=main";
2024-11-21 09:24:15 +00:00
flake = false;
};
};
2024-12-20 13:10:11 +00:00
outputs =
inputs:
2024-11-24 08:17:07 +00:00
inputs.parts.lib.mkFlake { inherit inputs; } {
2024-12-20 13:10:11 +00:00
perSystem =
{ pkgs, ... }:
{
formatter = pkgs.nixfmt-rfc-style;
};
systems = [ "x86_64-linux" ]; # YOUR SYSTEM IDK
imports = [ ./jetpure ]; # YOUR MACHINES
2024-11-21 09:24:15 +00:00
};
}