remove with and explicitly set what needs to be set in config.

This commit is contained in:
Joseph Hanson 2024-10-23 21:06:20 -05:00
parent a27cac9e4b
commit 0607896460
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o
2 changed files with 79 additions and 66 deletions

View file

@ -1,47 +1,49 @@
{ pkgs, config, inputs, ... }:
{
pkgs,
inputs,
...
}:
let
coderMainline = pkgs.coder.override { channel = "mainline"; };
in
with config;
{
imports = [
./global.nix
inputs.krewfile.homeManagerModules.krewfile
];
# Krewfile management
programs.krewfile = {
enable = true;
krewPackage = pkgs.krew;
indexes = {
"netshoot" = "https://github.com/nilic/kubectl-netshoot.git";
config = {
# Krewfile management
programs.krewfile = {
enable = true;
krewPackage = pkgs.krew;
indexes = {
"netshoot" = "https://github.com/nilic/kubectl-netshoot.git";
};
plugins = [
"netshoot/netshoot"
"resource-capacity"
"rook-ceph"
];
};
plugins = [
"netshoot/netshoot"
"resource-capacity"
"rook-ceph"
];
};
myHome = {
programs.firefox.enable = true;
programs.thunderbird.enable = true;
shell = {
wezterm.enable = true;
myHome = {
programs.firefox.enable = true;
programs.thunderbird.enable = true;
shell = {
wezterm.enable = true;
git = {
enable = true;
username = "Joseph Hanson";
email = "joe@veri.dev";
signingKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIDSAmssproxG+KsVn2DfuteBAemHrmmAFzCtldpKl4J";
git = {
enable = true;
username = "Joseph Hanson";
email = "joe@veri.dev";
signingKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIDSAmssproxG+KsVn2DfuteBAemHrmmAFzCtldpKl4J";
};
};
};
};
home = {
# Install these packages for my user
packages = with pkgs;
[
home = {
# Install these packages for my user
packages = with pkgs; [
# apps
obsidian
parsec-bin
@ -69,9 +71,11 @@ with config;
pre-commit # Pre-commit tasks for git
shellcheck # shell script linting
unstable.act # run GitHub actions locally
unstable.kubebuilder # k8s controller development
unstable.nodePackages_latest.prettier # code formatter
unstable.tailspin # logfile highlighter
coderMainline # VSCode in the browser -- has overlay
];
};
};
}

View file

@ -1,46 +1,55 @@
{ config, pkgs, inputs, ... }:
{
pkgs,
inputs,
...
}:
# Role for dev stations
# Could be a workstatio or a headless server.
with config;
{
# git & vim are in global
environment.systemPackages = with pkgs; [
btop
dnsutils
fira-code-nerdfont
jo
jq
nix
unstable.ncdu
yq
config = {
# git & vim are in global
environment.systemPackages = with pkgs; [
btop
dnsutils
fira-code-nerdfont
jo
jq
nix
unstable.ncdu
yq
# dev
gh
go
hadolint
nil
nixpkgs-fmt
shfmt
statix
tmux
unstable.cyme
unstable.helix
# nix lsp/formatters
nil
nixd
nixpkgs-fmt
unstable.nixfmt-rfc-style # nixfmt RFC 166-style compatible with nixpkgs soon
# flake imports
inputs.nix-inspect.packages.${pkgs.system}.default
inputs.talhelper.packages.${pkgs.system}.default
# dev
gh
go
hadolint
shfmt
statix
tmux
unstable.cyme
unstable.helix
# charmbracelet tools
gum
vhs
mods
soft-serve
];
# flake imports
inputs.nix-inspect.packages.${pkgs.system}.default
inputs.talhelper.packages.${pkgs.system}.default
programs.direnv = {
# TODO move to home-manager
enable = true;
nix-direnv.enable = true;
# charmbracelet tools
gum
vhs
mods
soft-serve
];
programs.direnv = {
# TODO move to home-manager
enable = true;
nix-direnv.enable = true;
};
};
}