mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-09 20:30:05 +00:00
⚗️🚧 (modules/flake) Update easy-hosts config and flake module args
This commit is contained in:
parent
ecfbc9baf6
commit
e54b87a835
10 changed files with 85 additions and 49 deletions
18
flake.nix
18
flake.nix
|
@ -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";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue