feat(home): adjust vicinae and eilmeldung configurations feat(neovim): enable folding in neovim configuration fix(nixos): disable resolved dns and remove fallback dns on tako chore(nixos): add pihole and resolved services to tsuba chore(home): remove unused packages from programs chore(nixos): add gamescope-wsi and vulkan-tools to steam configuration chore(nixos): update navidrome service with sops integration and systemd tmpfiles chore(darwin): use dynamic user in shiro configuration chore(secrets): add lastfm and pihole secrets to secrets.yaml
99 lines
1.6 KiB
Nix
99 lines
1.6 KiB
Nix
{
|
|
pkgs,
|
|
device,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../../modules
|
|
./aichat.nix
|
|
./atuin.nix
|
|
./bat.nix
|
|
# ./bluetui.nix
|
|
./carapace.nix
|
|
./ddcbacklight.nix
|
|
./direnv.nix
|
|
./eza.nix
|
|
./fastfetch.nix
|
|
./fish.nix
|
|
./fzf.nix
|
|
./gh.nix
|
|
./git.nix
|
|
./himalaya.nix
|
|
./mpd.nix
|
|
./ncpamixer.nix
|
|
./neomutt.nix
|
|
./neovim.nix
|
|
./nh.nix
|
|
./nix-index.nix
|
|
./nushell.nix
|
|
./omnix.nix
|
|
./opencode.nix
|
|
./retroarch.nix
|
|
./rustup.nix
|
|
./ryujinx.nix
|
|
./sops.nix
|
|
./ssh.nix
|
|
./starship.nix
|
|
./sxiv.nix
|
|
./tea.nix
|
|
./television.nix
|
|
./tmux.nix
|
|
./tuifeed.nix
|
|
./uv.nix
|
|
./xh.nix
|
|
./yazi.nix
|
|
./yt-dlp.nix
|
|
./zoxide.nix
|
|
./eilmeldung.nix
|
|
|
|
# ./goread.nix
|
|
# ./helix.nix
|
|
# ./magika.nix
|
|
# ./mpris-scrobbler.nix
|
|
# ./ncmpcpp.nix
|
|
# ./neomutt.nix
|
|
# ./neovim.nix
|
|
# ./newsboat.nix
|
|
# ./template.nix
|
|
# ./zellij.nix
|
|
];
|
|
home.packages = with pkgs;
|
|
[
|
|
_1password-cli
|
|
alejandra
|
|
aria2
|
|
bottom
|
|
btop
|
|
cachix
|
|
deploy-rs.deploy-rs
|
|
dust
|
|
fd
|
|
file
|
|
fzf
|
|
gnupg
|
|
jq
|
|
just
|
|
macchina
|
|
p7zip
|
|
pfetch-rs
|
|
pkg-config
|
|
ripgrep
|
|
sd
|
|
]
|
|
++ lib.optionals (!device.isServer) [
|
|
monaspace
|
|
nerd-fonts.fira-code
|
|
nerd-fonts.hasklug
|
|
nerd-fonts.symbols-only
|
|
noto-fonts
|
|
noto-fonts-cjk-sans
|
|
noto-fonts-color-emoji
|
|
liberation_ttf
|
|
fira-code
|
|
fira-code-symbols
|
|
mplus-outline-fonts.githubRelease
|
|
]
|
|
++ lib.optionals device.isLinux []
|
|
++ lib.optionals device.isDarwin [];
|
|
}
|