17 lines
564 B
Nix
17 lines
564 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";
|
|
};
|
|
};
|
|
}
|