🚧 Initial work on generating homeConfigurations output + syntax changes

This commit is contained in:
Jo 2025-03-25 23:46:13 +01:00
parent f139b88c0b
commit f89cbcc552
12 changed files with 131 additions and 106 deletions

View file

@ -1,9 +1,23 @@
{
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:isabelroses/easy-hosts";
easy-hosts.url = "github:tgirlcloud/easy-hosts";
flake-parts = {
url = "github:hercules-ci/flake-parts";
@ -16,15 +30,15 @@
};
};
outputs = { flake-parts, ... }@inputs:
flake-parts.lib.mkFlake { inherit inputs; } {
outputs = {flake-parts, ...} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {
debug = true;
imports = [
./modules/flake
];
systems = [ "x86_64-linux" ];
systems = ["x86_64-linux"];
flake = {
# Exposing the flake namespace
namespace = "puzzlevision";