code review

This commit is contained in:
Miguel Palhas
2024-10-04 17:35:03 +01:00
parent cbf66e1699
commit 5256730fe1
14 changed files with 58 additions and 54 deletions
+20
View File
@@ -0,0 +1,20 @@
{ inputs, lib, pkgs, config, outputs, ... }: {
imports = [
inputs.nix-colors.homeManagerModule
inputs.nixvim.homeManagerModules.nixvim
../common/programs/default.nix
];
colorscheme = inputs.nix-colors.colorSchemes.catppuccin-frappe;
programs = {
home-manager.enable = true;
git.enable = true;
fzf.enable = true;
};
home = {
username = lib.mkDefault "naps62";
stateVersion = lib.mkDefault "24.05";
};
}