nixos/home/common.nix
xezo360hye 668c2f17c4 refactor(flake, system): improve code structure
Refactor configuration generation

- Inherit lib from nixpkgs
- Rename functions (mkHome -> makeHome, merge -> forEachHost
- Relocate some variables' definitions into config generator functions
- Create separate function to track home-manager modules
2024-08-06 01:59:04 +03:00

80 lines
1.3 KiB
Nix

{ pkgs, ... }:
{
imports = [
./components/nethack.nix
./components/firefox.nix
];
programs = {
home-manager.enable = true;
fastfetch.enable = true;
htop.enable = true;
bash = {
enable = true;
historyControl = [ "ignoreboth" ];
};
git = {
enable = true;
userName = "xezo360hye";
userEmail = "xezo360hye@gmail.com";
extraConfig = {
init.defaultBranch = "master";
url."https://github.com/".insteadOf = [ "gh:" "github:" ];
url."https://git.psf.lt/".insteadOf = [ "psf:" "gitea:" ];
};
};
nixvim = {
enable = true;
colorschemes.nightfox = {
enable = true;
flavor = "nordfox";
};
plugins = {
guess-indent.enable = true;
copilot-lua = {
enable = true;
suggestion = {
autoTrigger = true;
keymap = {
accept = "<M-Right>";
acceptLine = "<M-l>";
acceptWord = "<M-w>";
};
};
};
};
};
};
nixpkgs.config.allowUnfree = true;
home = {
packages = with pkgs; [
telegram-desktop
libqalculate
arduino-cli
nethack
ani-cli
ytfzf
cpufrequtils
steam-run
];
sessionVariables = {
ANI_CLI_PLAYER = "mpv";
};
};
}