mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 01:17:42 -04:00
Upgrade to Nix 25.11
This commit is contained in:
parent
d451a0ec7b
commit
8821ec3369
9 changed files with 86 additions and 171 deletions
|
|
@ -5,7 +5,7 @@
|
|||
systemPackages = with pkgs; [
|
||||
chart-testing
|
||||
goreleaser
|
||||
inputs.flox.packages.${pkgs.system}.default
|
||||
inputs.flox.packages.${pkgs.stdenv.hostPlatform.system}.default
|
||||
kopia
|
||||
kubectx
|
||||
#reposurgeon # Nix is a major version behind brew
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
{ username, ... }: {
|
||||
{ config, ... }: {
|
||||
home.stateVersion = "23.11";
|
||||
|
||||
programs = {
|
||||
go = {
|
||||
enable = true;
|
||||
goPath = "go";
|
||||
env.GOPATH = "${config.home.homeDirectory}/go";
|
||||
};
|
||||
k9s.enable = true;
|
||||
};
|
||||
|
|
@ -12,10 +12,10 @@
|
|||
sops = {
|
||||
defaultSopsFile = ./secrets.yaml;
|
||||
secrets = {
|
||||
i2cssh_config.path = "/Users/${username}/.i2csshrc";
|
||||
local_git_config.path = "/Users/${username}/.gitconfig-local";
|
||||
local_private_env.path = "/Users/${username}/.private-env";
|
||||
user_nix_conf.path = "/Users/${username}/.config/nix/nix.conf";
|
||||
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";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue