mirror of
https://github.com/ryanccn/flake.git
synced 2025-12-06 08:10:43 +01:00
49 lines
976 B
Nix
49 lines
976 B
Nix
{
|
|
config,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
programs.home-manager.enable = true;
|
|
|
|
imports = [
|
|
inputs.catppuccin.homeManagerModules.catppuccin
|
|
inputs.am.homeManagerModules.default
|
|
inputs.nix-index-database.hmModules.nix-index
|
|
|
|
./variables.nix
|
|
./fonts.nix
|
|
|
|
./apps/vscode.nix
|
|
./apps/ghostty.nix
|
|
|
|
./programs/fish.nix
|
|
./programs/zsh.nix
|
|
./programs/starship.nix
|
|
./programs/direnv.nix
|
|
|
|
./programs/git.nix
|
|
./programs/bat.nix
|
|
./programs/helix.nix
|
|
./programs/go.nix
|
|
./programs/eza.nix
|
|
./programs/rust.nix
|
|
./programs/glamour.nix
|
|
./programs/tealdeer.nix
|
|
];
|
|
|
|
programs.bash.enable = true;
|
|
xdg.enable = true;
|
|
|
|
services.am-discord-rich-presence = {
|
|
enable = false;
|
|
logFile = "${config.home.homeDirectory}/Library/Logs/am-discord-rich-presence.log";
|
|
};
|
|
|
|
programs.nix-index-database.comma.enable = true;
|
|
|
|
catppuccin.flavor = "frappe";
|
|
catppuccin.accent = "sapphire";
|
|
|
|
home.stateVersion = "24.11";
|
|
}
|