add: nvchad

This commit is contained in:
ooks-io 2023-08-21 12:44:33 +12:00
parent 0001c26dcd
commit 4430232787
11 changed files with 845 additions and 8 deletions

View file

@ -20,8 +20,9 @@
outputs = { self, nixpkgs, home-manager, ... }@inputs:
let
inherit (self) outputs;
system = "x86_64-linux";
systems = [ "x86_64-linux" "aarch64-linux" ];
lib = nixpkgs.lib // home-manager.lib;
forEachSystem = f: lib.genAttrs systems (sys: f pkgsFor.${sys});
pkgsFor = nixpkgs.legacyPackages;
in
{
@ -29,6 +30,8 @@
homeManagerModules = import ./modules/home-manager;
packages = forEachSystem (pkgs: import ./pkgs { inherit pkgs; });
nixosConfigurations = {
# X1 Carbon
ooksx1 = lib.nixosSystem {