Compare commits

..

No commits in common. "17ac35e4aff06d50671940708eb14394da6a4da7" and "a27cac9e4b08ddc711789c64eb4c3089dfc41fb3" have entirely different histories.

3 changed files with 84 additions and 97 deletions

10
.vscode/settings.json vendored
View file

@ -8,13 +8,13 @@
"files.trimTrailingWhitespace": true, "files.trimTrailingWhitespace": true,
"sops.defaults.ageKeyFile": "age.key", "sops.defaults.ageKeyFile": "age.key",
"nix.enableLanguageServer": true, "nix.enableLanguageServer": true,
"nix.serverPath": "/run/current-system/sw/bin/nixd", "nix.serverPath": "/run/current-system/sw/bin/nil",
"nix.formatterPath": "/run/current-system/sw/bin/nixfmt", "nix.formatterPath": "/run/current-system/sw/bin/nixpkgs-fmt",
"nix.serverSettings": { "nix.serverSettings": {
"nixd": { "nil": {
"formatting": { "formatting": {
"command": ["nixfmt"] "command": ["nixpkgs-fmt"]
}
} }
} }
},
} }

View file

@ -1,17 +1,14 @@
{ { pkgs, config, inputs, ... }:
pkgs,
inputs,
...
}:
let let
coderMainline = pkgs.coder.override { channel = "mainline"; }; coderMainline = pkgs.coder.override { channel = "mainline"; };
in in
with config;
{ {
imports = [ imports = [
./global.nix ./global.nix
inputs.krewfile.homeManagerModules.krewfile inputs.krewfile.homeManagerModules.krewfile
]; ];
config = {
# Krewfile management # Krewfile management
programs.krewfile = { programs.krewfile = {
enable = true; enable = true;
@ -43,7 +40,8 @@ in
home = { home = {
# Install these packages for my user # Install these packages for my user
packages = with pkgs; [ packages = with pkgs;
[
# apps # apps
obsidian obsidian
parsec-bin parsec-bin
@ -71,11 +69,9 @@ in
pre-commit # Pre-commit tasks for git pre-commit # Pre-commit tasks for git
shellcheck # shell script linting shellcheck # shell script linting
unstable.act # run GitHub actions locally unstable.act # run GitHub actions locally
unstable.kubebuilder # k8s controller development
unstable.nodePackages_latest.prettier # code formatter unstable.nodePackages_latest.prettier # code formatter
unstable.tailspin # logfile highlighter unstable.tailspin # logfile highlighter
coderMainline # VSCode in the browser -- has overlay coderMainline # VSCode in the browser -- has overlay
]; ];
}; };
};
} }

View file

@ -1,13 +1,9 @@
{ { config, pkgs, inputs, ... }:
pkgs,
inputs,
...
}:
# Role for dev stations # Role for dev stations
# Could be a workstatio or a headless server. # Could be a workstatio or a headless server.
with config;
{ {
config = {
# git & vim are in global # git & vim are in global
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
btop btop
@ -19,16 +15,12 @@
unstable.ncdu unstable.ncdu
yq yq
# nix lsp/formatters
nil
nixd
nixpkgs-fmt
unstable.nixfmt-rfc-style # nixfmt RFC 166-style compatible with nixpkgs soon
# dev # dev
gh gh
go go
hadolint hadolint
nil
nixpkgs-fmt
shfmt shfmt
statix statix
tmux tmux
@ -51,5 +43,4 @@
enable = true; enable = true;
nix-direnv.enable = true; nix-direnv.enable = true;
}; };
};
} }