initial macos setup

This commit is contained in:
Remy Moll
2025-12-02 10:12:05 +01:00
parent 5ab5be9644
commit 6ee9e50a01
17 changed files with 381 additions and 9 deletions

View File

@@ -0,0 +1,32 @@
{ config, pkgs, lib, ... }:
with lib.hm.gvariant;
{
config = {
home.stateVersion = "24.05";
programs.git = {
enable = true;
settings = {
user.name = "Remy Moll";
user.email = "remy.moll@artidis.com";
};
};
};
imports = [
../../modules/home-manager/browser.nix
../../modules/home-manager/code.nix
../../modules/home-manager/dev.nix
../../modules/home-manager/fish.nix
../../modules/home-manager/kubectl.nix
../../modules/home-manager/nh.nix
../../modules/home-manager/work
];
}