initial macos setup
This commit is contained in:
7
modules/home-manager/work/cryptography.nix
Normal file
7
modules/home-manager/work/cryptography.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{pkgs, ...}:
|
||||
{
|
||||
home.packages = [
|
||||
pkgs.gnupg
|
||||
pkgs.sops
|
||||
];
|
||||
}
|
||||
17
modules/home-manager/work/default.nix
Normal file
17
modules/home-manager/work/default.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
let
|
||||
cfg = config.nix-config.hypr;
|
||||
in
|
||||
{
|
||||
options = {
|
||||
};
|
||||
|
||||
imports = [
|
||||
./cryptography.nix
|
||||
./kluster.nix
|
||||
];
|
||||
}
|
||||
9
modules/home-manager/work/kluster.nix
Normal file
9
modules/home-manager/work/kluster.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{pkgs, ...}:
|
||||
{
|
||||
home.packages = [
|
||||
pkgs.kubernetes-helm
|
||||
pkgs.awscli
|
||||
pkgs.aws-vault
|
||||
pkgs.k9s
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user