nix-home/common.nix

79 lines
1.2 KiB
Nix
Raw Normal View History

2021-09-29 16:38:27 +00:00
{ config, pkgs, ... }:
{
2021-09-29 23:00:14 +00:00
imports = [
./kakoune/kak.nix
./fish/fish.nix
];
2021-09-29 16:38:27 +00:00
# Enable the manual so we don't have to load it
manual.html.enable = true;
# Packages that are not in programs section
home.packages = with pkgs; [
2021-10-09 01:36:54 +00:00
# Build Tools
2021-09-29 16:42:37 +00:00
## C++
2021-09-29 16:38:27 +00:00
autoconf
automake
2021-09-29 16:42:37 +00:00
## SQL
flyway
## Go
go # to be configured later
## Rust
rust-analyzer
## JavaScript
yarn
# Fonts
2021-09-29 16:38:27 +00:00
fantasque-sans-mono
2021-09-29 16:42:37 +00:00
# CLI tools
2021-09-29 16:38:27 +00:00
fd
fossil
2021-09-29 16:42:37 +00:00
## Blog generator
2021-09-29 16:38:27 +00:00
hugo
2021-09-29 16:42:37 +00:00
## File Manager
2021-09-29 16:38:27 +00:00
nnn
2021-09-29 16:42:37 +00:00
## PDF Processors
2021-09-29 16:38:27 +00:00
poppler_utils
2021-09-29 16:42:37 +00:00
# Databases
postgresql
2021-09-29 16:38:27 +00:00
];
# Programs
programs = {
bat = {
enable = true;
config = {
theme = "GitHub";
};
};
bottom.enable = true;
command-not-found.enable = true;
exa = {
enable = true;
};
# later
firefox = {};
fzf = {
enable = true;
enableFishIntegration = true;
};
gh = {
enable = true;
gitProtocol = "ssh";
};
jq.enable = true;
nushell.enable = true;
};
}