1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-19 21:33:53 +00:00
ultima/flake.nix

48 lines
1.4 KiB
Nix
Raw Normal View History

2024-11-21 09:24:15 +00:00
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; # UNSTABLE
nur.url = "github:nix-community/NUR"; # NUR
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-11-21 09:24:15 +00:00
hyprland.url = "github:hyprwm/Hyprland"; # HYPRLAND
stylix.url = "github:danth/stylix"; # STYLIX
home-manager = { # HM
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-11-24 08:17:07 +00:00
zen = {
2024-11-21 09:24:15 +00:00
url = "github:ch4og/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-11-24 08:17:07 +00:00
spicetify = { # SPOTIFY
2024-11-21 09:24:15 +00:00
url = "github:Gerg-L/spicetify-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-11-24 03:17:16 +00:00
tgt = {
url = "github:FedericoBruzzone/tgt";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-11-21 09:24:15 +00:00
firefox-addons = { # FIREFOX
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-11-24 08:17:07 +00:00
design = { # DISIGNING REPO
url = "sourcehut:~neverness/design?ref=main";
2024-11-21 09:24:15 +00:00
flake = false;
};
};
2024-11-22 11:26:29 +00:00
outputs = inputs:
2024-11-24 08:17:07 +00:00
inputs.parts.lib.mkFlake { inherit inputs; } {
2024-11-21 09:24:15 +00:00
systems = [ "x86_64-linux" ];
imports = [ ./workst ];
};
}