-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathdefault.nix
More file actions
32 lines (32 loc) · 1.93 KB
/
default.nix
File metadata and controls
32 lines (32 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{inputs, username, host, ...}: {
imports =
[(import ./aseprite/aseprite.nix)] # pixel art editor
++ [(import ./audacious.nix)] # music player
++ [(import ./bat.nix)] # better cat command
++ [(import ./btop.nix)] # resouces monitor
++ [(import ./cava.nix)] # audio visualizer
++ [(import ./discord/discord.nix)] # discord with catppuccin theme
++ [(import ./fastfetch.nix)] # fetch tool
++ [(import ./floorp/floorp.nix)] # firefox based browser
++ [(import ./fzf.nix)] # fuzzy finder
++ [(import ./gaming.nix)] # packages related to gaming
++ [(import ./git.nix)] # version control
++ [(import ./gnome.nix)] # gnome apps
++ [(import ./gtk.nix)] # gtk theme
++ [(import ./hyprland)] # window manager
++ [(import ./kitty.nix)] # terminal
++ [(import ./swaync/swaync.nix)] # notification deamon
++ [(import ./micro.nix)] # nano replacement
++ [(import ./nvim.nix)] # neovim editor
++ [(import ./packages.nix)] # other packages
++ [(import ./retroarch.nix)]
++ [(import ./rofi.nix)] # launcher
++ [(import ./scripts/scripts.nix)] # personal scripts
++ [(import ./spicetify.nix)] # spotify client
++ [(import ./starship.nix)] # shell prompt
++ [(import ./swaylock.nix)] # lock screen
++ [(import ./vscodium.nix)] # vscode forck
++ [(import ./waybar)] # status bar
++ [(import ./xdg-mimes.nix)] # xdg config
++ [(import ./zsh.nix)]; # shell
}