refactor: cleaned up nixos and home dirs

This commit is contained in:
Nick 2025-02-06 00:51:06 -06:00
parent 2000adb56a
commit 824a91d405
643 changed files with 323 additions and 195 deletions

View file

@ -0,0 +1,16 @@
{ flake, ... }:
{
programs.wezterm =
let
configPath = ./config;
extraConfigPath = import (configPath + /extraConfig.nix) {
inherit
flake
;
};
in
{
enable = true;
extraConfig = extraConfigPath;
};
}