Files
nixfiles/system/modules/work/default.nix
T

55 lines
1.1 KiB
Nix
Raw Normal View History

2025-06-17 15:14:06 +01:00
{ config, pkgs, inputs, lib, ... }:
let
unstable = import inputs.nixpkgs-unstable {
inherit (pkgs.stdenv.hostPlatform) system;
config.allowUnfree = true;
};
in
2025-06-17 15:14:06 +01:00
{
programs.git = {
settings = {
commit.gpgsign = true;
tag.gpgsign = true;
gpg.format = "ssh";
user.signingkey = "~/.ssh/id_ed25519.pub";
user.email = "emma.thorpe@citrix.com";
};
2025-06-17 15:14:06 +01:00
};
home.packages = [
pkgs.kubectl
pkgs.argo-rollouts
pkgs.tenv
pkgs.kubernetes-helm
pkgs.azure-cli
pkgs.kubelogin
pkgs.curl
pkgs.notation
pkgs.powershell
pkgs.nuget
pkgs.gedit
pkgs.lens
pkgs.python3
pkgs.gnumake
pkgs.gcc
pkgs.libiconv
pkgs.autoconf
pkgs.automake
pkgs.pkg-config
pkgs.wget
unstable.claude-code
pkgs.google-cloud-sdk
2025-06-17 15:14:06 +01:00
];
home.shellAliases = {
docker = "/run/current-system/sw/bin/docker";
};
2025-06-20 14:03:42 +00:00
programs.tmux = {
extraConfig = ''
set -g status-right "#(/run/current-system/sw/bin/bash $HOME/code/kube-tmux/kube.tmux 250 red black)"
'';
};
programs.go = {
enable = true;
};
2025-06-17 15:14:06 +01:00
}