nix-config/flake.in.nix

106 lines
3.1 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-05-07 03:23:55 -04:00
nixvim = mkInput "pupbrained/nixvim";
2024-05-16 02:40:39 -04:00
schizofox = mkInput "schizofox/schizofox";
2024-05-07 03:23:55 -04:00
treefmt-nix = mkInput "numtide/treefmt-nix";
home-manager = mkFollowingNixpkgs "nix-community/home-manager";
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:
with inputs; let
pkgs = import nixpkgs {inherit system;};
system = "x86_64-linux";
in
snowfall-lib.mkFlake {
2024-05-07 03:23:55 -04:00
inherit inputs;
src = ./.;
formatter.${system} = treefmt-nix.lib.mkWrapper pkgs {
projectRootFile = "flake.nix";
2024-06-13 23:47:00 -04:00
2024-05-07 03:23:55 -04:00
programs = {
alejandra.enable = true;
deadnix.enable = true;
};
};
2024-05-16 02:40:39 -04:00
overlays = [
snowfall-flake.overlays.default
2024-05-28 04:08:06 -04:00
2024-06-13 23:47:00 -04:00
(_final: _prev: {
2024-05-16 02:40:39 -04:00
nixSuper = nix-super.packages.${system}.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
};
homes.modules = [
2024-05-16 02:40:39 -04:00
catppuccin.homeManagerModules.catppuccin
2024-05-28 04:08:06 -04:00
chaotic.homeManagerModules.default
hyprland.homeManagerModules.default
nix-colors.homeManagerModules.default
2024-05-07 03:23:55 -04:00
nix-index-database.hmModules.nix-index
2024-05-16 02:40:39 -04:00
schizofox.homeManagerModules.default
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
devShells.${system}.default = with pkgs;
mkShellNoCC {
packages = [
alejandra
git
2024-05-16 02:40:39 -04:00
nvfetcher
2024-05-07 03:23:55 -04:00
statix
2024-06-13 23:47:00 -04:00
(writeScriptBin "build" "nix fmt && nh os switch . -- --impure && nh home switch")
2024-05-07 03:23:55 -04:00
(writeScriptBin "up" "nix flake update")
];
};
};
}