⚗️🚧 (modules/flake) Update easy-hosts config and flake module args

This commit is contained in:
Jo 2025-01-15 23:56:16 +01:00
parent ecfbc9baf6
commit e54b87a835
10 changed files with 85 additions and 49 deletions

View file

@ -3,29 +3,31 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
easy-hosts.url = "github:isabelroses/easy-hosts";
# Flake parts, a library that provides utilites for creating flakes
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
# Provides an easy interface for loading systems from a directory
easy-hosts.url = "github:isabelroses/easy-hosts";
#
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
debug = true;
imports = [
./systems
./modules/flake
];
systems = [ "x86_64-linux" ];
flake = {
# Exposing the flake namespace
namespace = "puzzlevision";
};
};
}