2025-01-13 23:35:54 +01:00
|
|
|
{
|
|
|
|
description = "Jo's dotfiles";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
2025-01-15 23:56:16 +01:00
|
|
|
easy-hosts.url = "github:isabelroses/easy-hosts";
|
2025-01-13 23:35:54 +01:00
|
|
|
|
|
|
|
flake-parts = {
|
|
|
|
url = "github:hercules-ci/flake-parts";
|
|
|
|
inputs.nixpkgs-lib.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
|
|
|
home-manager = {
|
2025-01-15 23:56:16 +01:00
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2025-01-13 23:35:54 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = inputs@{ flake-parts, ... }:
|
|
|
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
2025-01-15 23:56:16 +01:00
|
|
|
debug = true;
|
|
|
|
|
2025-01-13 23:35:54 +01:00
|
|
|
imports = [
|
2025-01-15 23:56:16 +01:00
|
|
|
./modules/flake
|
2025-01-13 23:35:54 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
systems = [ "x86_64-linux" ];
|
2025-01-15 23:56:16 +01:00
|
|
|
flake = {
|
|
|
|
# Exposing the flake namespace
|
|
|
|
namespace = "puzzlevision";
|
|
|
|
};
|
2025-01-13 23:35:54 +01:00
|
|
|
};
|
|
|
|
}
|