{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
nixos-hardware.url = "github:nixos/nixos-hardware";
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
# Core
impermanence.url = "github:nix-community/impermanence";
home-manager = {
url = "github:nix-community/home-manager/release-24.05";
inputs.nixpkgs.follows = "nixpkgs";
};
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs-stable.follows = "nixpkgs";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
# Own flakes
nvim-flake = {
url = "git+https://git.src.quest/~liljamo/nvim-flake";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
};
outputs = inputs:
inputs.flake-parts.lib.mkFlake {inherit inputs;} {
imports = [
#./hm-modules
./systems
];
systems = ["x86_64-linux"];
perSystem = {
pkgs,
system,
...
}: {
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
alejandra
sops
];
};
};
};
}