204 lines
5.0 KiB
Nix
204 lines
5.0 KiB
Nix
{
|
|
lib,
|
|
pkgs,
|
|
stateVersion,
|
|
email,
|
|
devTools,
|
|
hmOnly,
|
|
username,
|
|
...
|
|
}: let
|
|
# from https://github.com/Gerg-L/demoninajar/blob/39964f198dbfa34c21f81c35370fab312b476051/homes/veritas_manjaro/nixGL.nix#L42
|
|
mkWrapped = wrap: orig-pkg: execName:
|
|
pkgs.makeOverridable
|
|
(
|
|
attrs: let
|
|
pkg = orig-pkg.override attrs;
|
|
outs = pkg.meta.outputsToInstall;
|
|
paths = pkgs.lib.attrsets.attrVals outs pkg;
|
|
nonTrivialOuts = pkgs.lib.lists.remove "out" outs;
|
|
metaAttributes =
|
|
pkgs.lib.attrsets.getAttrs
|
|
(
|
|
[
|
|
"name"
|
|
"pname"
|
|
"version"
|
|
"meta"
|
|
]
|
|
++ nonTrivialOuts
|
|
)
|
|
pkg;
|
|
in
|
|
pkgs.symlinkJoin (
|
|
{
|
|
inherit paths;
|
|
nativeBuildInputs = [pkgs.makeWrapper];
|
|
postBuild = ''
|
|
mv $out/bin/${execName} $out/bin/.${execName}-mkWrapped-original
|
|
makeWrapper \
|
|
${wrap}/bin/${wrap.name} $out/bin/${execName} \
|
|
--add-flags $out/bin/.${execName}-mkWrapped-original
|
|
'';
|
|
}
|
|
// metaAttributes
|
|
)
|
|
)
|
|
{};
|
|
glintel = mkWrapped pkgs.nixgl.nixGLIntel;
|
|
firefox =
|
|
if (pkgs.stdenv.hostPlatform.system == "x86_64-linux")
|
|
then pkgs.firefox-bin
|
|
else pkgs.firefox;
|
|
in {
|
|
home = {
|
|
inherit stateVersion username;
|
|
homeDirectory = "/home/${username}";
|
|
};
|
|
|
|
home.file.".cache/evolution/.stignore".text = "*.db";
|
|
home.packages = with pkgs;
|
|
lib.mkMerge [
|
|
(lib.mkIf devTools [
|
|
go
|
|
zig
|
|
])
|
|
|
|
(lib.mkIf hmOnly [
|
|
# pkgs by motiejus
|
|
tmuxbash
|
|
nicer
|
|
|
|
ncdu
|
|
poop
|
|
tokei
|
|
bloaty
|
|
scrcpy
|
|
yt-dlp
|
|
kubectl
|
|
vimv-rs
|
|
ripgrep
|
|
yamllint
|
|
bandwhich
|
|
hyperfine
|
|
nix-output-monitor
|
|
])
|
|
];
|
|
|
|
programs = lib.mkMerge [
|
|
{
|
|
direnv.enable = true;
|
|
man = {
|
|
enable = true;
|
|
generateCaches = true;
|
|
};
|
|
|
|
firefox = lib.mkIf devTools {
|
|
enable = true;
|
|
# firefox doesn't need the wrapper on the personal laptop
|
|
package =
|
|
if hmOnly
|
|
then (glintel firefox "firefox")
|
|
else firefox;
|
|
policies.DisableAppUpdate = true;
|
|
profiles = {
|
|
xdefault = {
|
|
isDefault = true;
|
|
settings = {
|
|
"app.update.auto" = false;
|
|
"browser.aboutConfig.showWarning" = false;
|
|
"browser.contentblocking.category" = "strict";
|
|
"browser.urlbar.showSearchSuggestionsFirst" = false;
|
|
"layout.css.prefers-color-scheme.content-override" = 0;
|
|
"signon.management.page.breach-alerts.enabled" = false;
|
|
"signon.rememberSignons" = false;
|
|
};
|
|
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
|
bitwarden
|
|
ublock-origin
|
|
consent-o-matic
|
|
joplin-web-clipper
|
|
multi-account-containers
|
|
];
|
|
};
|
|
};
|
|
};
|
|
|
|
neovim = lib.mkMerge [
|
|
{
|
|
enable = true;
|
|
vimAlias = true;
|
|
vimdiffAlias = true;
|
|
defaultEditor = true;
|
|
plugins = with pkgs.vimPlugins;
|
|
lib.mkMerge [
|
|
[fugitive]
|
|
(lib.mkIf devTools [
|
|
vim-go
|
|
zig-vim
|
|
])
|
|
];
|
|
extraConfig = builtins.readFile ./vimrc;
|
|
}
|
|
(lib.mkIf devTools {
|
|
extraLuaConfig =
|
|
builtins.readFile
|
|
(pkgs.substituteAll {
|
|
src = ./dev.lua;
|
|
inherit (pkgs) gotools ripgrep;
|
|
})
|
|
.outPath;
|
|
})
|
|
];
|
|
|
|
git = {
|
|
enable = true;
|
|
userEmail = email;
|
|
userName = "Motiejus Jakštys";
|
|
aliases.yolo = "commit --amend --no-edit -a";
|
|
extraConfig = {
|
|
rerere.enabled = true;
|
|
pull.ff = "only";
|
|
merge.conflictstyle = "zdiff3";
|
|
init.defaultBranch = "main";
|
|
};
|
|
};
|
|
|
|
gpg = {
|
|
enable = true;
|
|
mutableKeys = false;
|
|
mutableTrust = false;
|
|
publicKeys = [
|
|
{
|
|
source = ./motiejus-gpg.txt;
|
|
trust = "ultimate";
|
|
}
|
|
];
|
|
};
|
|
|
|
tmux = {
|
|
enable = true;
|
|
keyMode = "vi";
|
|
historyLimit = 1000000;
|
|
extraConfig = ''
|
|
bind c new-window -c "#{pane_current_path}"
|
|
bind % split-window -h -c "#{pane_current_path}"
|
|
bind '"' split-window -v -c "#{pane_current_path}"
|
|
'';
|
|
};
|
|
}
|
|
(
|
|
lib.mkIf (!hmOnly)
|
|
{
|
|
bash = {
|
|
enable = true;
|
|
shellAliases = {
|
|
"l" = "echo -n ł | xclip -selection clipboard";
|
|
"gp" = "${pkgs.git}/bin/git remote | ${pkgs.parallel}/bin/parallel --verbose git push";
|
|
};
|
|
};
|
|
}
|
|
)
|
|
];
|
|
}
|