Modularize with numtide/blueprint

This commit is contained in:
Julien Hémono 2025-12-06 13:58:07 +01:00
parent d0b1495ede
commit 5335a08eb5
17 changed files with 135 additions and 170 deletions

View file

@ -1,35 +0,0 @@
{ config, pkgs, ... }:
{
imports = [
../common
];
home.username = "julien";
home.homeDirectory = "/home/julien";
home.stateVersion = "25.05";
user.info.email = "julien@scalizer.fr";
programs.uv.enable = true;
programs.gemini-cli = {
enable = true;
};
home.packages = with pkgs; [
];
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
services.home-manager.autoExpire.enable = true;
nix = {
package = pkgs.nix;
gc.automatic = true;
settings.experimental-features = [ "nix-command" "flakes" ];
};
}