mirror of
https://github.com/ryanccn/flake.git
synced 2025-12-06 08:10:43 +01:00
39 lines
673 B
Nix
39 lines
673 B
Nix
{
|
|
config,
|
|
ctpModule,
|
|
amDiscordModule,
|
|
...
|
|
}: {
|
|
home.stateVersion = "23.05";
|
|
|
|
imports = [
|
|
ctpModule
|
|
amDiscordModule
|
|
|
|
./variables.nix
|
|
./fonts.nix
|
|
|
|
./apps/vscode.nix
|
|
|
|
./programs/zsh.nix
|
|
./programs/fish.nix
|
|
./programs/starship.nix
|
|
|
|
./programs/git.nix
|
|
./programs/bat.nix
|
|
./programs/helix.nix
|
|
./programs/go.nix
|
|
./programs/eza.nix
|
|
./programs/rust.nix
|
|
./programs/glamour.nix
|
|
];
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
services.am-discord-rich-presence = {
|
|
enable = true;
|
|
logFile = "${config.home.homeDirectory}/Library/Logs/am-discord-rich-presence.log";
|
|
};
|
|
|
|
catppuccin.flavour = "frappe";
|
|
}
|