nixos-config/modules/nixos/_private/suites/dev.nix

208 lines
6.5 KiB
Nix
Raw Normal View History

# The module for anything dev-related.
{ config, lib, pkgs, ... }:
let cfg = config.suites.dev;
in {
options.suites.dev = {
enable = lib.mkEnableOption "basic configuration for software development";
extras.enable = lib.mkEnableOption "additional shell utilities";
2023-12-25 12:05:49 +00:00
hardware.enable = lib.mkEnableOption "additional hardware-related dev utilities";
containers.enable = lib.mkEnableOption "containers setup";
virtual-machines.enable = lib.mkEnableOption "virtual machines setup";
neovim.enable = lib.mkEnableOption "Neovim setup";
};
config = lib.mkIf cfg.enable (lib.mkMerge [
{
# Hey! Wanna see some of <INSERT APPLICATION'S NAME> big dark dump?
2022-07-18 23:07:53 +00:00
systemd.coredump = {
enable = true;
extraConfig = ''
ProcessSizeMax=10G
ExternalSizeMax=10G
'';
};
2022-09-25 07:24:47 +00:00
# Debugging time!
environment.enableDebugInfo = true;
2021-11-25 13:45:48 +00:00
# I want to include documentations for my own sanity, OK?
documentation = {
enable = true;
dev.enable = true;
nixos.enable = true;
man.generateCaches = true;
2021-11-25 13:45:48 +00:00
};
2021-12-08 04:18:37 +00:00
# Install Git, our favorite version control system.
# In this case, we want ALL OF THE EXTENSIONS!
programs.git = {
enable = true;
lfs.enable = true;
package = pkgs.gitFull;
};
# Additional settings for developing with nix.
nix.settings = {
keep-outputs = true;
keep-derivations = true;
};
2021-11-25 13:45:48 +00:00
# This is set as our system packages for the sake of convenience.
environment.systemPackages = with pkgs; [
bind.dnsutils # A bunch of things to make sense with DNS.
2021-11-25 13:45:48 +00:00
curl # Our favorite network client.
ipcalc # Calculate your IP without going to the web.
gcc # The usual toolchain.
2022-09-25 07:24:47 +00:00
gdb # The usual debugger.
gnumake # The other poster boy for the hated build system.
2021-11-30 01:03:05 +00:00
moreutils # Less is more but more utilities, the merrier.
2023-10-18 01:37:43 +00:00
sshfs # Make others' home your own.
whois # Doctor, are you not?
valgrind # Making sure your applications don't pee as much.
# All of the documentation.
man-pages # Extra manpages.
man-pages-posix # More POSIX manpages.
];
}
(lib.mkIf cfg.extras.enable {
environment.systemPackages = with pkgs; [
bandwhich # Sniffing your packets.
cachix # Compile no more by using someone's binary cache!
direnv # The power of local development environment.
2024-08-25 11:12:09 +00:00
difftastic # Cracked version of diff.
2021-11-25 13:45:48 +00:00
lazygit # Git interface for the lazy.
lazydocker # Git interface for the lazy.
2021-11-25 13:45:48 +00:00
fd # Oh nice, a more reliable `find`.
ripgrep # On nice, a more reliable `grep`.
eza # Oh nice, a shinier `ls`.
bat # dog > sky dog > cat
2021-11-25 13:45:48 +00:00
fzf # A fuzzy finder that enables fuzzy finding not furry finding, a common misconception.
quilt # Patching right up yer' alley.
2021-11-25 13:45:48 +00:00
zoxide # Gain teleportation abilities!
]
# Finally, a local environment for testing out GitHub workflows without
# embarassing yourself pushing a bunch of commits.
++ (lib.optional config.virtualisation.docker.enable pkgs.act)
# Enable all of the gud things.
++ (lib.optionals config.programs.git.enable (with pkgs; [
tea # Make some Tea...
hut # ...in the Hut...
2024-08-25 11:12:09 +00:00
github-cli # ...in the Git Hub...
git-filter-repo # History is written by the victors (and force-pushers which are surely not victors).
]));
# Make per-project devenvs more of a living thing.
services.lorri.enable = true;
# Make shebangs even more magical.
services.envfs.enable = true;
# Convenience!
environment.localBinInPath = true;
2023-12-25 12:05:49 +00:00
# It's a given at life to have a GPG key.
programs.gnupg.agent.enable = true;
})
(lib.mkIf cfg.hardware.enable {
environment.systemPackages = with pkgs; [
# Measuring your bloated tanks power and bandwidth consumption.
powertop
nethogs
# Hardware and software diagnostics.
lsof # View every single open connections.
lshw # View your hardware.
pciutils # View your peripherals.
];
# Instrumentate your instrument.
programs.systemtap.enable = true;
# Search around sharks for wires.
programs.wireshark.enable = true;
# Profile your whole system.
services.sysprof.enable = true;
})
# !!! Please add your user to the "libvirtd" group.
(lib.mkIf cfg.containers.enable {
2022-06-09 05:00:07 +00:00
environment.systemPackages = with pkgs; [
dive # Dive into container images.
2022-06-09 05:00:07 +00:00
];
2022-01-25 01:32:17 +00:00
2023-10-18 01:17:33 +00:00
programs.distrobox = {
enable = true;
settings = {
container_additional_volumes = [
"/nix/store:/nix/store:r"
"/etc/profiles/per-user:/etc/profiles/per-user:r"
];
container_image_default = "registry.opensuse.org/opensuse/distrobox-packaging:latest";
container_command = "sh -norc";
};
};
# Podman with Docker compatibility which is not 100% but still better
# than nothing.
virtualisation.podman = {
enable = true;
dockerCompat = true;
autoPrune = {
enable = true;
dates = "weekly";
};
defaultNetwork.settings = {
dns_enabled = true;
};
};
# Enable usual containers configuration.
virtualisation.containers = {
enable = true;
registries.search = [
"docker.io"
"ghcr.io"
"quay.io"
"registry.opensuse.org"
];
};
})
(lib.mkIf cfg.virtual-machines.enable {
environment.systemPackages = with pkgs; [
2023-12-23 12:33:23 +00:00
virt-top # Monitoring your virtual machines on a terminal, yeah.
virt-manager # An interface for those who are lazy to read a reference manual and create a 1000-line configuration per machine.
];
# Virtual machines, son. They open in response to physical needs to
# foreign environments.
virtualisation.libvirtd = {
enable = true;
2023-11-06 08:10:42 +00:00
qemu.package = pkgs.qemu_full;
2021-11-25 13:45:48 +00:00
qemu.ovmf.enable = true;
};
})
(lib.mkIf cfg.neovim.enable {
# Easier, better, faster, stronger.
programs.neovim = {
enable = true;
defaultEditor = true;
withNodeJs = true;
withRuby = true;
};
2022-04-30 12:30:22 +00:00
environment.systemPackages = with pkgs; [
editorconfig-core-c # Consistent canonical coding conventions.
tree-sitter # It surely doesn't have a partner to kiss.
2022-04-30 12:30:22 +00:00
];
})
]);
}