mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-10 04:40:05 +00:00
🚧 Initial work on generating homeConfigurations output + syntax changes
This commit is contained in:
parent
f139b88c0b
commit
f89cbcc552
12 changed files with 131 additions and 106 deletions
22
flake.nix
22
flake.nix
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue