23 lines
728 B
Nix
23 lines
728 B
Nix
{ nur, self, inputs, username, system, ... }:
|
|
|
|
{
|
|
imports =
|
|
[ (import ./btop.nix) ]
|
|
++ [ (import ./bat.nix) ]
|
|
++ [ (import ./firefox/firefox.nix) ]
|
|
++ [ (import ./cava.nix) ]
|
|
++ [ (import ./fuzzel.nix) ]
|
|
++ [ (import ./gtk.nix) ]
|
|
++ [ (import ./hyprland) ]
|
|
++ [ (import ./kitty.nix) ]
|
|
++ [ (import ./spicetify.nix) ]
|
|
++ [ (import ./starship.nix) ]
|
|
++ [ (import ./scripts) ]
|
|
++ [ (import ./yazi.nix) ]
|
|
++ [ (import ./swaync/swaync.nix) ]
|
|
++ [ (import ./userpkgs.nix) ]
|
|
++ [ (import ./waybar) ]
|
|
++ [ (import ./eza.nix) ]
|
|
++ [ (import ./zshell.nix) ];
|
|
}
|