nix-config/modules/default.nix
Donovan Glover 47b5ac0d7d
nix: Remove logic from modules/default.nix
For simplicity, the first-level default.nix should be used to import all
the other modules.
2023-06-08 17:23:22 -04:00

34 lines
443 B
Nix

{pkgs, ...}: let
VARIABLES = import ../src/variables.nix;
in {
imports = [
./feh
./kitty
./librewolf
./mpv
./piper
./qutebrowser
./thunar
./zathura
./fish-starship
./git
./gpg
./ncmpcpp
./neovim
./joshuto
./dual-function-keys
./dunst
./fcitx5-mozc
./fonts
./hyprland
./pipewire
./rofi
./stylix
./swaylock
./waybar
./xdg-user-dirs
];
}