mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-22 01:19:45 +01:00
17 lines
264 B
Nix
17 lines
264 B
Nix
{config, pkgs, ...}: let
|
|
d = config.xdg.dataHome;
|
|
c = config.xdg.configHome;
|
|
cache = config.xdg.cacheHome;
|
|
in rec {
|
|
imports = [
|
|
./nushell
|
|
|
|
./alacritty.nix
|
|
./core.nix
|
|
./development.nix
|
|
./git.nix
|
|
./media.nix
|
|
./starship.nix
|
|
];
|
|
|
|
} |