snowflake/flake.nix

98 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
outputs = inputs:
inputs.flake-parts.lib.mkFlake {inherit inputs;} {
imports = [
inputs.pre-commit-hooks.flakeModule
./hosts
2024-04-16 21:05:49 -04:00
./hosts/deploy.nix
./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;
statix.enable = true;
alejandra.enable = true;
deadnix = {
enable = true;
excludes = ["overlays.nix"];
};
prettier = {
enable = true;
files = "\\.(js|ts|md|json)$";
2024-04-17 14:53:48 -04:00
settings = {
trailing-comma = "none";
};
};
};
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;
};
};
2024-04-17 14:53:48 -04:00
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2024-05-12 23:53:17 -04:00
### hypr
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
2024-04-17 14:53:48 -04:00
hypridle.url = "github:hyprwm/hypridle";
hyprlock.url = "github:hyprwm/hyprlock";
hyprpicker.url = "github:hyprwm/hyprpicker";
2024-04-17 15:13:44 -04:00
hyprpaper.url = "github:hyprwm/hyprpaper";
2024-04-17 14:53:48 -04:00
xdg-portal-hyprland.url = "github:hyprwm/xdg-desktop-portal-hyprland";
hyprland-plugins = {
url = "github:hyprwm/hyprland-plugins";
inputs.hyprland.follows = "hyprland";
};
2024-05-12 23:53:17 -04:00
### other stuff
2024-04-17 14:53:48 -04:00
nix-gaming.url = "github:fufexan/nix-gaming";
attic.url = "github:zhaofengli/attic";
nur.url = "github:nix-community/NUR";
yazi.url = "github:sxyazi/yazi";
2024-05-27 10:24:14 -04:00
helix.url = "github:SoraTenshi/helix/new-daily-driver";
2024-04-17 14:53:48 -04:00
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
atuin.url = "github:atuinsh/atuin";
flake-parts.url = "github:hercules-ci/flake-parts";
2024-04-23 14:52:32 -04:00
stylix.url = "github:danth/stylix";
2024-04-26 17:21:31 -04:00
eww.url = "github:elkowar/eww";
2024-05-12 23:53:17 -04:00
anyrun.url = "github:Kirottu/anyrun";
2024-05-26 16:43:09 -04:00
wezterm.url = "github:notohh/wezterm?dir=nix&ref=nix-add-overlay";
2024-04-17 14:53:48 -04:00
deploy-rs = {
url = "github:serokell/deploy-rs";
inputs.nixpkgs.follows = "nixpkgs";
};
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
2022-12-06 01:24:54 -05:00
}