feat: split out configuration
This commit is contained in:
@@ -35,6 +35,7 @@
|
|||||||
home-manager.useGlobalPkgs = true;
|
home-manager.useGlobalPkgs = true;
|
||||||
home-manager.useUserPackages = true;
|
home-manager.useUserPackages = true;
|
||||||
home-manager.users.emmathorpe = import ./emmathorpe/home.nix;
|
home-manager.users.emmathorpe = import ./emmathorpe/home.nix;
|
||||||
|
home-manager.users.emmathorpe = import ./system/modules/work/default.nix;
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -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
|
||||||
|
];
|
||||||
|
}
|
||||||
@@ -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;
|
|
||||||
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user