mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 01:17:42 -04:00
- Add deadnix, nixfmt, and statix to flake inputs - Add formatter output to flake for nix fmt support - Add deadnix, nixfmt, statix to Home Manager packages - Format all nix files with nixfmt - Add GitHub Actions workflow for CI validation - Support x86_64-darwin in formatter
22 lines
571 B
Nix
22 lines
571 B
Nix
{ config, ... }:
|
|
{
|
|
home.stateVersion = "23.11";
|
|
|
|
programs = {
|
|
go = {
|
|
enable = true;
|
|
env.GOPATH = "${config.home.homeDirectory}/go";
|
|
};
|
|
k9s.enable = true;
|
|
};
|
|
|
|
sops = {
|
|
defaultSopsFile = ./secrets.yaml;
|
|
secrets = {
|
|
i2cssh_config.path = "${config.home.homeDirectory}/.i2csshrc";
|
|
local_git_config.path = "${config.home.homeDirectory}/.gitconfig-local";
|
|
local_private_env.path = "${config.home.homeDirectory}/.private-env";
|
|
user_nix_conf.path = "${config.home.homeDirectory}/.config/nix/nix.conf";
|
|
};
|
|
};
|
|
}
|