spun out user config and home config.

This commit is contained in:
2026-02-13 13:35:01 -06:00
parent f1c627e392
commit efb8a6efe5
6 changed files with 82 additions and 25 deletions

View File

@@ -1,12 +1,17 @@
{
description = "A very basic flake";
description = "Lily's NixOS, LiNix";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
wrappers.url = "github:Lassulus/wrappers";
flake-parts.url = "github:hercules-ci/flake-parts";
import-tree.url = "github:vic/import-tree";
};
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
wrappers.url = "github:Lassulus/wrappers";
flake-parts.url = "github:hercules-ci/flake-parts";
import-tree.url = "github:vic/import-tree";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
outputs = inputs: inputs.flake-parts.lib.mkFlake {inherit inputs;} (inputs.import-tree ./modules);
};
outputs = inputs: inputs.flake-parts.lib.mkFlake {inherit inputs;} (inputs.import-tree ./modules);
}