Evie Litherland-Smith
b102f9e209
Reduce complexity and in flake.nix and be more efficient in re-using things Removed some reduandant files in home/ and tidied up the structure somewhat Moved things from desktop, gui, etc... to top level Changed env to shell, indiv shell expressions import relevant others
35 lines
837 B
Nix
35 lines
837 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [(nerdfonts.override {fonts = ["FiraCode"];})];
|
|
programs = {
|
|
direnv = {
|
|
enable = true;
|
|
nix-direnv.enable = true;
|
|
};
|
|
fzf = {
|
|
enable = true;
|
|
colors = {
|
|
fg = "-1";
|
|
bg = "-1";
|
|
hl = "#c678dd";
|
|
"fg+" = "#ffffff";
|
|
"bg+" = "#4b5263";
|
|
"hl+" = "#d858fe";
|
|
info = "#98c379";
|
|
prompt = "#61afef";
|
|
pointer = "#be5046";
|
|
marker = "#e5c07b";
|
|
spinner = "#61afef";
|
|
header = "#61afef";
|
|
};
|
|
};
|
|
keychain = {
|
|
enable = true;
|
|
extraFlags = ["--quiet" "--noask" "--ignore-missing"];
|
|
keys = ["id_rsa" "id_ed25519"];
|
|
enableXsessionIntegration = true;
|
|
};
|
|
starship.enable = true;
|
|
};
|
|
xdg.configFile."starship.toml".source = ./starship.toml;
|
|
}
|