initial macos setup

This commit is contained in:
Remy Moll
2025-12-02 10:12:05 +01:00
parent 625039ee58
commit 211a463846
17 changed files with 379 additions and 7 deletions

View File

@@ -0,0 +1,10 @@
{
config,
pkgs,
...
}:
{
programs.nh = {
enable = true;
};
}

View File

@@ -0,0 +1,7 @@
{pkgs, ...}:
{
home.packages = [
pkgs.gnupg
pkgs.sops
];
}

View File

@@ -0,0 +1,17 @@
{
config,
lib,
...
}:
let
cfg = config.nix-config.hypr;
in
{
options = {
};
imports = [
./cryptography.nix
./kluster.nix
];
}

View File

@@ -0,0 +1,9 @@
{pkgs, ...}:
{
home.packages = [
pkgs.kubernetes-helm
pkgs.awscli
pkgs.aws-vault
pkgs.k9s
];
}