This commit is contained in:
Miguel Palhas
2024-09-29 10:31:52 +01:00
commit 327b575dc5
16 changed files with 960 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{ 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;
neovim.enable = true;
};
home = {
username = lib.mkDefault "naps62";
stateVersion = lib.mkDefault "24.05";
file = { "asd".text = "asd"; };
};
}