nix-config/flake.in.nix

100 lines
2.9 KiB
Nix
Raw Normal View History

2024-05-07 03:23:55 -04:00
{
inputs = let
2024-05-28 04:08:06 -04:00
mkCustomUrl = url: {inherit url;};
2024-05-16 02:40:39 -04:00
2024-05-28 04:08:06 -04:00
mkInput = url: {url = "github:${url}";};
2024-05-07 03:23:55 -04:00
mkFollowingNixpkgs = url: {
url = "github:${url}";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-05-28 04:08:06 -04:00
mkFollowing = url: input: {
url = "github:${url}";
inputs.${input}.follows = input;
};
mkWithSubmodules = url: {
inherit url;
submodules = true;
type = "git";
};
2024-05-07 03:23:55 -04:00
in {
agenix = mkInput "ryantm/agenix";
2024-05-16 02:40:39 -04:00
catppuccin = mkInput "catppuccin/nix";
2024-05-07 03:23:55 -04:00
chaotic = mkInput "chaotic-cx/nyx/nyxpkgs-unstable";
2024-05-28 04:08:06 -04:00
hyprland = mkWithSubmodules "https://github.com/hyprwm/Hyprland";
hyprland-plugins = mkFollowing "hyprwm/hyprland-plugins" "hyprland";
2024-05-07 03:23:55 -04:00
impermanence = mkInput "nix-community/impermanence";
2024-05-28 04:08:06 -04:00
nix-colors = mkInput "Misterio77/nix-colors";
nixpkgs = mkInput "NixOS/nixpkgs/nixos-unstable";
2024-05-16 02:42:33 -04:00
nix-super = mkCustomUrl "git+https://git.privatevoid.net/max/nix-super.git";
2024-07-28 02:49:27 -04:00
nixvim = mkInput "pupbrained/nvim-config";
2024-05-07 03:23:55 -04:00
treefmt-nix = mkInput "numtide/treefmt-nix";
2024-08-11 02:26:51 -04:00
nix-doom-emacs-unstraightened = mkInput "marienz/nix-doom-emacs-unstraightened";
2024-07-28 21:52:06 -04:00
darwin = mkFollowingNixpkgs "LnL7/nix-darwin/master";
home-manager = mkFollowingNixpkgs "nix-community/home-manager";
2024-05-07 03:23:55 -04:00
nix-index-database = mkFollowingNixpkgs "nix-community/nix-index-database";
2024-05-16 02:40:39 -04:00
snowfall-flake = mkFollowingNixpkgs "snowfallorg/flake";
2024-05-07 03:23:55 -04:00
snowfall-lib = mkFollowingNixpkgs "snowfallorg/lib/dev";
};
2024-05-16 02:40:39 -04:00
outputs = {...} @ inputs:
2024-07-28 03:29:11 -04:00
with inputs;
2024-05-16 02:40:39 -04:00
snowfall-lib.mkFlake {
2024-05-07 03:23:55 -04:00
inherit inputs;
src = ./.;
2024-05-16 02:40:39 -04:00
overlays = [
snowfall-flake.overlays.default
];
2024-05-07 03:23:55 -04:00
channels-config = {
2024-05-16 02:40:39 -04:00
allowAliases = true;
2024-05-07 03:23:55 -04:00
allowUnfree = true;
2024-05-16 02:40:39 -04:00
allowUnsupportedSystem = true;
cudaSupport = true;
permittedInsecurePackages = ["freeimage-unstable-2021-11-01"];
home-manager.useGlobalPkgs = true;
2024-05-07 03:23:55 -04:00
};
2024-05-28 04:08:06 -04:00
systems.modules.nixos = [
agenix.nixosModules.default
catppuccin.nixosModules.catppuccin
chaotic.nixosModules.default
impermanence.nixosModules.impermanence
];
2024-05-07 03:23:55 -04:00
systems.modules.darwin = [
"${home-manager}/nix-darwin"
];
2024-07-28 03:29:11 -04:00
outputs-builder = channels: {
formatter = treefmt-nix.lib.mkWrapper channels.nixpkgs {
projectRootFile = "flake.nix";
programs = {
alejandra.enable = true;
deadnix.enable = true;
stylua.enable = true;
taplo.enable = true;
};
2024-05-07 03:23:55 -04:00
};
2024-07-28 03:29:11 -04:00
devShells.default = with channels.nixpkgs;
mkShellNoCC {
packages = [
alejandra
git
nvfetcher
statix
2024-08-03 02:43:51 -04:00
(writeScriptBin "build" "nix fmt && ${snowfallorg.flake}/bin/flake switch")
2024-07-28 03:29:11 -04:00
(writeScriptBin "up" "nix flake update")
];
};
};
2024-05-07 03:23:55 -04:00
};
}