mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-05-10 05:29:48 +02:00
47 lines
1 KiB
Nix
47 lines
1 KiB
Nix
{
|
|
description = "Jo's dotfiles";
|
|
|
|
nixConfig = {
|
|
experimental-features = [
|
|
"flakes"
|
|
"nix-command"
|
|
];
|
|
extra-substituters = [
|
|
"https://nix-community.cachix.org"
|
|
];
|
|
extra-trusted-public-keys = [
|
|
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
|
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
|
];
|
|
};
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
easy-hosts.url = "github:tgirlcloud/easy-hosts";
|
|
|
|
flake-parts = {
|
|
url = "github:hercules-ci/flake-parts";
|
|
inputs.nixpkgs-lib.follows = "nixpkgs";
|
|
};
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = {flake-parts, ...} @ inputs:
|
|
flake-parts.lib.mkFlake {inherit inputs;} {
|
|
debug = true;
|
|
|
|
imports = [
|
|
./modules/flake
|
|
];
|
|
|
|
systems = ["x86_64-linux"];
|
|
flake = {
|
|
# Exposing the flake namespace
|
|
namespace = "puzzlevision";
|
|
};
|
|
};
|
|
}
|