1
0
Fork 0
This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues/pull-requests.
dotnix-archive/apps/default.nix

42 lines
669 B
Nix
Raw Normal View History

{pkgs, ...}: {
2023-06-28 20:48:01 +00:00
imports = [
./common.nix
2023-06-28 20:48:01 +00:00
./firefox.nix
./go.nix
./gtk.nix
./spotifyd.nix
./tiny.nix
2023-06-28 20:48:01 +00:00
./wezterm.nix
];
home = {
packages = with pkgs; [
# Tools
delve
discord
obsidian
spotify-tui
2023-06-28 20:48:01 +00:00
# LSPs
gopls
lua-language-server
marksman
nodePackages.yaml-language-server
# Formatters
alejandra
2023-06-28 20:48:01 +00:00
# IDEs
jetbrains.goland
# Personal NUR
nur.repos.jolheiser.git-age
nur.repos.jolheiser.gomodinit
nur.repos.jolheiser.imp
nur.repos.jolheiser.kv
nur.repos.jolheiser.tclip
nur.repos.jolheiser.tmpl
2023-06-28 20:48:01 +00:00
];
};
}