99 lines
1.6 KiB
Nix
99 lines
1.6 KiB
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./modules/nethack.nix
|
|
./modules/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;
|
|
suggestion.keymap = {
|
|
accept = "<M-Right>";
|
|
acceptLine = "<M-l>";
|
|
acceptWord = "<M-w>";
|
|
};
|
|
};
|
|
};
|
|
|
|
keymaps = [
|
|
{
|
|
mode = "n";
|
|
key = ";";
|
|
action = ":";
|
|
}
|
|
{
|
|
mode = "n";
|
|
key = "<Esc>";
|
|
action = "<Cmd>nohlsearch<CR>";
|
|
options = {
|
|
silent = true;
|
|
};
|
|
}
|
|
];
|
|
};
|
|
|
|
mpv = {
|
|
enable = true;
|
|
};
|
|
};
|
|
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
home = {
|
|
packages = with pkgs; [
|
|
telegram-desktop
|
|
libqalculate
|
|
arduino-cli
|
|
|
|
ani-cli
|
|
ytfzf
|
|
|
|
cpufrequtils
|
|
steam-run
|
|
];
|
|
|
|
sessionVariables = {
|
|
ANI_CLI_PLAYER = "mpv";
|
|
};
|
|
};
|
|
}
|