snowflake/flake.nix

97 lines
2.8 KiB
Nix
Raw Normal View History

2022-12-06 01:24:54 -05:00
{
2023-03-06 05:35:45 -05:00
description = "snowflake";
2023-04-23 17:45:37 -04:00
2022-12-06 01:24:54 -05:00
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2023-10-29 05:31:21 -04:00
hyprland.url = "github:hyprwm/Hyprland";
2023-11-15 02:00:24 -05:00
ags.url = "github:Aylur/ags";
nix-gaming.url = "github:fufexan/nix-gaming";
2024-01-04 14:41:13 -05:00
attic.url = "github:zhaofengli/attic";
2024-01-07 17:51:00 -05:00
nur.url = "github:nix-community/NUR";
2024-01-17 13:34:21 -05:00
yazi.url = "github:sxyazi/yazi";
2024-01-22 19:15:34 -05:00
helix.url = "github:helix-editor/helix";
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
2024-02-08 11:43:25 -05:00
wezterm.url = "github:notohh/wezterm?dir=nix&ref=nix-add-overlay";
2024-02-26 15:01:17 -05:00
hypridle.url = "github:hyprwm/hypridle";
2024-03-07 03:55:11 -05:00
hyprlock.url = "github:hyprwm/hyprlock";
2024-02-26 15:01:17 -05:00
hyprpicker.url = "github:hyprwm/hyprpicker";
2024-03-10 07:50:53 -04:00
hyprcursor.url = "github:hyprwm/hyprcursor";
2024-02-26 15:01:17 -05:00
xdg-portal-hyprland.url = "github:hyprwm/xdg-desktop-portal-hyprland";
2024-03-31 19:00:19 -04:00
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
2024-04-12 21:30:12 -04:00
atuin.url = "github:atuinsh/atuin";
flake-parts.url = "github:hercules-ci/flake-parts";
2023-11-15 02:00:24 -05:00
hyprland-plugins = {
url = "github:hyprwm/hyprland-plugins";
inputs.hyprland.follows = "hyprland";
};
2023-04-26 19:42:28 -04:00
deploy-rs = {
url = "github:serokell/deploy-rs";
2023-05-16 21:10:57 -04:00
inputs.nixpkgs.follows = "nixpkgs";
2023-04-26 19:42:28 -04:00
};
sops-nix = {
url = "github:Mic92/sops-nix";
2023-05-16 21:10:57 -04:00
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-09-24 13:39:33 -04:00
nix-index-database = {
url = "github:Mic92/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-11-15 02:00:24 -05:00
anyrun = {
url = "github:Kirottu/anyrun";
inputs.nixpkgs.follows = "nixpkgs";
};
2022-12-06 01:24:54 -05:00
};
outputs = inputs:
inputs.flake-parts.lib.mkFlake {inherit inputs;} {
imports = [
inputs.pre-commit-hooks.flakeModule
./hosts
./home/profiles
];
systems = ["x86_64-linux"];
perSystem = {
config,
pkgs,
...
}: {
pre-commit = {
2024-04-16 21:04:07 -04:00
check.enable = true;
settings = {
excludes = ["flake.lock"];
hooks = {
stylua.enable = true;
eslint.enable = true;
statix.enable = true;
alejandra.enable = true;
deadnix = {
enable = true;
excludes = ["overlays.nix"];
};
prettier = {
enable = true;
files = "\\.(js|ts|md|json)$";
};
};
2024-02-01 17:49:02 -05:00
};
};
devShells.default = pkgs.mkShell {
name = "snowflake";
shellHook = config.pre-commit.installationScript;
packages = with pkgs; [
git
sops
alejandra
yaml-language-server
lua-language-server
];
};
formatter = pkgs.alejandra;
};
};
2022-12-06 01:24:54 -05:00
}