🚧 Implement basic easy-hosts configuration and flake structure

📝 Add credits and structure
This commit is contained in:
Jo 2025-01-13 23:35:54 +01:00
parent 4a6199eacb
commit 9dc26a0db6
10 changed files with 250 additions and 0 deletions

31
flake.nix Normal file
View file

@ -0,0 +1,31 @@
{
description = "Jo's dotfiles";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
# 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";
};
};
outputs = inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
./systems
];
systems = [ "x86_64-linux" ];
};
}