feat: split out configuration

This commit is contained in:
2025-06-17 15:14:06 +01:00
committed by Emma Thorpe
parent 934769ba71
commit c1b3d78213
3 changed files with 16 additions and 15 deletions
+15
View File
@@ -0,0 +1,15 @@
{ config, pkgs, inputs, lib, ... }:
{
programs.git = {
userEmail = "emma.thorpe@cloud.com";
};
home.packages = [
pkgs.kubectl
pkgs.tenv
pkgs.kubernetes-helm
pkgs.azure-cli
pkgs.kubelogin
pkgs.curl
];
}
-15
View File
@@ -1,15 +0,0 @@
{
description = "Work items for Nix";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }: {
packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;
packages.x86_64-linux.default = self.packages.x86_64-linux.hello;
};
}