18 lines
578 B
Nix
18 lines
578 B
Nix
{ specialArgs, inputs, config, pkgs, lib, ... }:
|
|
|
|
{
|
|
home = {
|
|
username = "user";
|
|
homeDirectory = "/home/user";
|
|
stateVersion = "22.05";
|
|
sessionVariables = { EDITOR = "micro"; };
|
|
file = {
|
|
".config/btop/themes/catppuccin_mocha.theme".source =
|
|
"${inputs.dotfiles}/.config/btop/themes/catppuccin_mocha.theme";
|
|
".config/fish/themes/Catppuccin Mocha.theme".source =
|
|
"${inputs.dotfiles}/.config/fish/themes/Catppuccin Mocha.theme";
|
|
".config/starship.toml".source =
|
|
"${inputs.dotfiles}/.config/starship.toml";
|
|
};
|
|
};
|
|
}
|