flake/flake.nix
uku 67599df305
flake.lock: Update
Flake lock file updates:

• Updated input 'api-rs':
    'github:uku3lig/api-rs/9a608e741a47250dbb84550a37255e8d3a80ac80?narHash=sha256-BlooLtPPo6453esxubBut3AkDvne80H%2BTgDMVMWoBhs%3D' (2024-07-04)
  → 'github:uku3lig/api-rs/ca02c1b7accfa60b25ca8abc11d8c4ae08942988?narHash=sha256-5klgZHJbtoKzimFyxuoxtIQgVm7wpryznKw4b/nQXBg%3D' (2024-07-06)
• Removed input 'api-rs/rust-overlay'
• Updated input 'home-manager':
    'github:nix-community/home-manager/e3582e5151498bc4d757e8361431ace8529e7bb7?narHash=sha256-lC3byBmhVZFzWl/dCic8%2BcKUEEAXAswWOYjq4paFmbo%3D' (2024-07-05)
  → 'github:nix-community/home-manager/10486e6b311b3c5ae1c3477fee058704cea7cb4a?narHash=sha256-E3CjSsXNDWYqoNjrKQLPdEZDLR%2BmVI9HMa%2BjY//FjBY%3D' (2024-07-06)
• Updated input 'ukubot-rs':
    'github:uku3lig/ukubot-rs/80cbeb54ad97826ab7a72e302d6651fcdfc49e8e?narHash=sha256-x6qVZVBNwkgnIGd8xMUroU84jT6xoTcfJhinf4wSk9g%3D' (2024-07-01)
  → 'github:uku3lig/ukubot-rs/baece2468da12083ada422fe41d43ccb44dc7163?narHash=sha256-qShvS3tZh7QzEVPXEAKwo65bBZA%2BVQ7hzqfD9f7db1U%3D' (2024-07-06)
• Removed input 'ukubot-rs/rust-overlay'
2024-07-06 23:54:19 +02:00

122 lines
2.9 KiB
Nix

{
description = "example flake idk";
outputs = {
self,
flake-parts,
nixinate,
...
} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = ["x86_64-linux"];
imports = [
./systems
./exprs
];
perSystem = {
pkgs,
system,
...
}: {
apps = (nixinate.nixinate.${system} self).nixinate;
devShells.default = pkgs.mkShellNoCC {
packages = with pkgs; [
just
statix
];
};
formatter = pkgs.alejandra;
};
};
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
agenix = {
url = "github:uku3lig/agenix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.systems.follows = "systems";
inputs.home-manager.follows = "home-manager";
inputs.darwin.follows = "";
};
catppuccin.url = "github:Stonks3141/ctp-nix";
crane = {
url = "github:ipetkov/crane";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
flake-utils = {
url = "github:numtide/flake-utils";
inputs.systems.follows = "systems";
};
ghostty.url = "git+ssh://git@github.com/ghostty-org/ghostty";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
lanzaboote = {
url = "github:nix-community/lanzaboote";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
inputs.flake-utils.follows = "flake-utils";
inputs.crane.follows = "crane";
inputs.pre-commit-hooks-nix.follows = "";
inputs.flake-compat.follows = "";
};
nixinate = {
url = "github:matthewcroughan/nixinate";
inputs.nixpkgs.follows = "nixpkgs";
};
nixos-wsl = {
url = "github:nix-community/NixOS-WSL";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
inputs.flake-compat.follows = "";
};
# nix's most elaborate, overcomplicated joke
systems.url = "github:nix-systems/default";
vscode-extensions = {
url = "github:nix-community/nix-vscode-extensions";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
inputs.flake-compat.follows = "";
};
vscode-server = {
url = "github:nix-community/nixos-vscode-server";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
# ==== uku3lig stuff ====
api-rs = {
url = "github:uku3lig/api-rs";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
};
ukubot-rs = {
url = "github:uku3lig/ukubot-rs";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
};
};
}