73 lines
1.3 KiB
Nix
73 lines
1.3 KiB
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./modules/nethack
|
|
./modules/firefox
|
|
./modules/neovim
|
|
./modules/emacs
|
|
];
|
|
|
|
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:" ];
|
|
};
|
|
};
|
|
|
|
mpv = {
|
|
enable = true;
|
|
};
|
|
};
|
|
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
home = {
|
|
packages = with pkgs; let
|
|
sent' = sent.overrideAttrs (oldAttrs: {
|
|
buildInputs = oldAttrs.buildInputs ++ [ cairo ];
|
|
patches = [
|
|
./resources/patches/sent-pdf.diff
|
|
];
|
|
});
|
|
in [
|
|
texlive.combined.scheme-full
|
|
telegram-desktop
|
|
libqalculate
|
|
arduino-cli
|
|
|
|
ani-cli
|
|
ytfzf
|
|
|
|
cpufrequtils
|
|
steam-run
|
|
|
|
sent'
|
|
];
|
|
|
|
sessionVariables = {
|
|
ANI_CLI_PLAYER = "mpv";
|
|
};
|
|
|
|
file = {
|
|
".config/nixpkgs/config.nix".text = "{ allowUnfree = true; }";
|
|
};
|
|
};
|
|
}
|