61 lines
1.7 KiB
Nix
61 lines
1.7 KiB
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
|
||
|
{
|
||
|
home.username = "nikos";
|
||
|
home.homeDirectory = "/home/nikos";
|
||
|
|
||
|
# This value determines the Home Manager release that your configuration is
|
||
|
# compatible with. This helps avoid breakage when a new Home Manager release
|
||
|
# introduces backwards incompatible changes.
|
||
|
#
|
||
|
# You should not change this value, even if you update Home Manager. If you do
|
||
|
# want to update the value, then make sure to first check the Home Manager
|
||
|
# release notes.
|
||
|
home.stateVersion = "23.05"; # Please read the comment before changing.
|
||
|
|
||
|
# Home Manager is pretty good at managing dotfiles. The primary way to manage
|
||
|
# plain files is through 'home.file'.
|
||
|
home.file = {
|
||
|
".config/nvim".source = ./nvim;
|
||
|
".config/foot".source = ./foot;
|
||
|
};
|
||
|
|
||
|
# The home.packages option allows you to install Nix packages into your
|
||
|
# environment.
|
||
|
home.packages = import ./packages.nix pkgs;
|
||
|
|
||
|
fonts.fontconfig.enable = true;
|
||
|
|
||
|
programs.git = {
|
||
|
enable = true;
|
||
|
userName = "Nikos Papadakis";
|
||
|
userEmail = "nikos@papadakis.xyz";
|
||
|
signing.key = "78871F9905ADFF02";
|
||
|
signing.signByDefault = true;
|
||
|
includes = [
|
||
|
{
|
||
|
contents = {
|
||
|
init.defaultBranch = "main";
|
||
|
pull.rebase = true;
|
||
|
};
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
|
||
|
programs.fish = {
|
||
|
enable = true;
|
||
|
shellInit = builtins.readFile ./fish/config.fish;
|
||
|
functions = lib.attrsets.mapAttrs'
|
||
|
(
|
||
|
name: value: {
|
||
|
name = builtins.replaceStrings [ ".fish" ] [ "" ] name;
|
||
|
value = builtins.readFile (./fish/functions + ("/" + name));
|
||
|
}
|
||
|
)
|
||
|
(builtins.readDir ./fish/functions);
|
||
|
};
|
||
|
|
||
|
# Let Home Manager install and manage itself.
|
||
|
programs.home-manager.enable = true;
|
||
|
}
|