nixos-config/alex/home.nix

101 lines
2.5 KiB
Nix
Raw Normal View History

2023-06-17 17:01:57 +00:00
{ config, pkgs, ... }:
2023-06-16 23:46:10 +00:00
2023-06-17 17:01:57 +00:00
{
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = "alex";
home.homeDirectory = "/home/alex";
2023-06-16 23:46:10 +00:00
2023-06-17 23:55:49 +00:00
# Aliases
home.shellAliases = {
"git-override" = "git add . && git commit --amend --no-edit && git push --force-with-lease";
};
2023-06-17 17:01:57 +00:00
# Packages that should be installed to the user profile.
2023-06-17 17:51:24 +00:00
home.packages = with pkgs; [
discord
firefox
2023-06-17 20:46:54 +00:00
gnucash
2023-06-17 17:51:24 +00:00
keepassxc
lutris
mpv
nextcloud-client
nixpkgs-fmt
spotify
steam
winetricks
wineWowPackages.unstableFull
yt-dlp
2023-06-17 17:01:57 +00:00
];
2023-06-16 23:46:10 +00:00
2023-06-19 00:06:52 +00:00
# WM/DE config
gtk = {
enable = true;
font.name = "Victor Mono SemiBold 12";
theme = {
name = "SolArc-Dark";
package = pkgs.solarc-gtk-theme;
};
};
2023-06-17 21:14:55 +00:00
# User software configurations
programs = {
2023-06-17 23:55:49 +00:00
git = {
enable = true;
userEmail = "alexmat2on@protonmail.com";
userName = "alex";
ignores = [ "*~" ];
extraConfig = {
init.defaultBranch = "main";
};
};
2023-06-17 21:14:55 +00:00
kitty = {
enable = true;
extraConfig = ''
background_tint 0.2
background_image /home/alex/Downloads/artificialos/aos1.png
background_image_layout centered
modify_font cell_width 110%
window_border_width 1
window_margin_width 10
window_padding_width 2
'';
theme = "Adventure Time";
font.package = pkgs.victor-mono;
font.name = "Victor Mono";
font.size = 12;
};
2023-06-18 00:16:24 +00:00
vscode = {
enable = true;
extensions = with pkgs; [
vscode-extensions.eamodio.gitlens
vscode-extensions.jnoortheen.nix-ide
vscode-extensions.scalameta.metals
];
userSettings = {
"workbench.colorTheme" = "Default Dark Modern";
"security.workspace.trust.untrustedFiles" = "open";
"nix.formatterPath" = "nixpkgs-fmt";
"files.autoSave" = "afterDelay";
"editor.formatOnSave" = true;
};
};
2023-06-17 21:14:55 +00:00
};
2023-06-17 17:01:57 +00:00
# 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 can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "23.05";
2023-06-19 00:06:52 +00:00
home.enableNixpkgsReleaseCheck = true;
2023-06-16 23:46:10 +00:00
2023-06-17 17:01:57 +00:00
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}