This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/home.nix

197 lines
4.0 KiB
Nix
Raw Normal View History

{ config, pkgs, inputs, nix-colors, ... }:
2023-04-05 10:36:45 +01:00
let
colors = config.colorScheme.colors;
in
{
2022-08-07 16:37:11 +01:00
imports = [
2022-12-16 08:10:28 +00:00
nix-colors.homeManagerModule
2023-04-05 10:36:45 +01:00
./configs/beets
./configs/cava
./configs/wayland/hyprland.nix
./configs/fish
./configs/mpd
./configs/mpv
./configs/neovim
./configs/firefox
./configs/dircolors.nix
./configs/xdg-mime.nix
2023-05-10 13:37:18 +01:00
./configs/kvantum
2022-08-07 16:37:11 +01:00
];
2023-04-05 10:36:45 +01:00
# Home Manager needs a bit of information about you and the
# paths it should manage.
2022-08-07 16:37:11 +01:00
home.username = "manuel";
home.homeDirectory = "/home/manuel";
home.packages = with pkgs; [
appimage-run
2023-04-05 10:36:45 +01:00
qt5ct
bc
bottom
calcurse
2023-05-14 10:23:49 +01:00
libsForQt5.dolphin
libsForQt5.dolphin-plugins
2023-04-05 10:36:45 +01:00
gimp
gnome.file-roller
gnome.gvfs
gnome.seahorse
gnome.simple-scan
lutris
mesa-demos
nerdfonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif
obs-studio
2023-05-14 10:23:49 +01:00
openxray
2023-05-10 13:37:18 +01:00
openmw
2023-04-05 10:36:45 +01:00
pavucontrol
protontricks
sc-im
signal-desktop
sshfs
steam
steam-run
steamtinkerlaunch
sxiv
thunderbird
tldr
twemoji-color-font
vimv
vulkan-tools
vulkan-validation-layers
2023-05-14 10:23:49 +01:00
webcord-vencord
2023-04-05 10:36:45 +01:00
wineWowPackages.stagingFull
wxedid
xdg-utils
xivlauncher
2023-05-10 13:37:18 +01:00
qbittorrent
2023-04-05 10:36:45 +01:00
];
2022-08-07 16:37:11 +01:00
home.sessionVariables = {
2023-03-19 21:35:09 +00:00
EDITOR = "nvim";
2023-04-12 23:27:05 +01:00
MESA_DISK_CACHE_SINGLE_FILE = "1";
2023-02-26 00:49:03 +00:00
NIXOS_OZONE_WL = "1";
2023-04-12 23:27:05 +01:00
RADV_PERFTEST = "gpl";
WINEDLLOVERRIDES = "winemenubuilder.exe=d";
2023-01-24 14:23:45 +00:00
XDG_SCREENSHOTS_DIR = "~/Screenshots";
2023-05-10 13:37:18 +01:00
WLR_NO_HARDWARE_CURSORS = "1";
2022-08-07 16:37:11 +01:00
};
2022-12-16 08:10:28 +00:00
colorScheme = nix-colors.colorSchemes.gruvbox-dark-medium;
2022-08-07 16:37:11 +01:00
fonts.fontconfig.enable = true;
2022-11-14 11:58:04 +00:00
programs.keychain = {
enable = true;
enableFishIntegration = true;
};
2023-05-10 13:37:18 +01:00
services.gpg-agent = {
enable = true;
pinentryFlavor = "gtk2";
};
2022-08-07 16:37:11 +01:00
services.udiskie.enable = true;
2022-11-14 11:58:04 +00:00
services.kdeconnect = {
enable = true;
indicator = true;
};
2022-08-07 16:37:11 +01:00
services.gammastep = {
2022-09-28 13:34:44 +01:00
enable = false;
2022-08-07 16:37:11 +01:00
provider = "geoclue2";
};
gtk = {
enable = true;
theme = {
package = pkgs.gruvbox-dark-gtk;
2022-08-08 10:01:42 +01:00
name = "gruvbox-dark";
2022-08-07 16:37:11 +01:00
};
2022-09-20 14:26:47 +01:00
2022-08-07 16:37:11 +01:00
font = {
name = "JetBrainsMono Nerd Font";
size = 9;
};
2022-09-20 14:26:47 +01:00
2022-08-07 16:37:11 +01:00
iconTheme = {
package = pkgs.gruvbox-dark-icons-gtk;
name = "oomox-gruvbox-dark";
};
2022-09-20 14:26:47 +01:00
2022-09-04 00:54:47 +01:00
cursorTheme = {
package = pkgs.capitaine-cursors;
name = "capitaine-cursors-white";
2023-05-10 13:37:18 +01:00
size = 24;
2022-09-04 00:54:47 +01:00
};
2022-08-07 16:37:11 +01:00
};
2023-05-10 13:37:18 +01:00
2023-04-05 10:36:45 +01:00
programs = {
aria2.enable = true;
password-store.enable = true;
command-not-found.enable = false;
fzf = {
enable = true;
enableFishIntegration = true;
};
2022-08-07 16:37:11 +01:00
2023-04-05 10:36:45 +01:00
git = {
enable = true;
lfs.enable = true;
userName = "Varris";
userEmail = "varris@posteo.net";
};
2022-08-07 16:37:11 +01:00
2023-04-05 10:36:45 +01:00
nix-index = {
enable = true;
enableFishIntegration = true;
};
2022-08-07 16:37:11 +01:00
2023-04-05 10:36:45 +01:00
zellij = {
enable = true;
settings = {
theme = "gruvbox-dark";
themes.gruvbox-dark = {
fg = "#${colors.base05}";
bg = "#${colors.base00}";
black = "#${colors.base01}";
red = "#${colors.base08}";
green = "#${colors.base0B}";
yellow = "#${colors.base0A}";
blue = "#${colors.base0D}";
magenta = "#${colors.base0E}";
cyan = "#${colors.base0C}";
white = "#${colors.base07}";
orange = "#${colors.base0F}";
};
};
};
2022-08-07 17:52:09 +01:00
};
2022-12-16 08:10:28 +00:00
services.gnome-keyring.enable = true;
2022-11-14 11:58:04 +00:00
services.easyeffects = {
2023-05-10 13:37:18 +01:00
enable = true;
preset = "DT770";
2022-11-14 11:58:04 +00:00
};
2023-03-14 15:23:24 +00:00
2022-08-08 10:01:42 +01:00
xdg.userDirs = {
enable = true;
createDirectories = true;
music = "/mnt/hdd/Music";
download = "/mnt/hdd/Downloads";
};
2023-04-05 10:36:45 +01: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.
2022-08-07 16:37:11 +01:00
home.stateVersion = "22.05";
}
2022-12-16 08:10:28 +00:00