Adding Importing functionality

This commit is contained in:
Peritia 2025-08-06 09:34:26 +02:00
parent 62594d312c
commit 2f9ff34ad4
17 changed files with 1188 additions and 307 deletions

11
flake.nix Normal file
View file

@ -0,0 +1,11 @@
{
description = "Nyx: Home Manager Tools";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, ... }: {
homeManagerModules.default = import ./nyx;
};
}