mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-02-16 09:49:45 +01:00
For simplicity, the first-level default.nix should be used to import all the other modules.
34 lines
443 B
Nix
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
|
|
];
|
|
}
|