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

162 lines
2.9 KiB
Nix
Raw Normal View History

2023-05-25 22:47:29 +01:00
{ pkgs, ... }:
{
2022-08-07 16:37:11 +01:00
imports = [
2023-04-05 10:36:45 +01:00
./configs/beets
./configs/cava
2023-05-15 21:06:28 +01:00
./configs/wayland/hyprland
./configs/rofi
2023-04-05 10:36:45 +01:00
./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
2023-05-21 01:35:32 +01:00
./configs/tmux
2022-08-07 16:37:11 +01:00
];
home.username = "manuel";
home.homeDirectory = "/home/manuel";
home.packages = with pkgs; [
2023-05-25 15:44:15 +01:00
appimage-run
2023-04-05 10:36:45 +01:00
bc
bottom
calcurse
gimp
gnome.file-roller
2023-05-25 15:44:15 +01:00
gnome.gnome-boxes
2023-04-05 10:36:45 +01:00
gnome.gvfs
gnome.seahorse
gnome.simple-scan
2023-05-25 15:44:15 +01:00
libsForQt5.dolphin
libsForQt5.dolphin-plugins
2023-04-05 10:36:45 +01:00
lutris
mesa-demos
nerdfonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif
obs-studio
2023-05-10 13:37:18 +01:00
openmw
2023-04-05 10:36:45 +01:00
pavucontrol
protontricks
2023-05-25 15:44:15 +01:00
qbittorrent
qt5ct
2023-04-05 10:36:45 +01:00
sc-im
signal-desktop
sshfs
steam-run
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
xdg-utils
2023-05-29 16:43:26 +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-05-15 21:06:28 +01:00
NIXPKGS_ALLOW_UNFREE = "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
};
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 = {
2023-05-26 02:42:33 +01:00
package = pkgs.gruvbox-dark-gtk;
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 = {
2023-05-29 16:43:26 +01:00
package = pkgs.gruvbox-plus-icon-pack;
name = "GruvboxPlus";
2022-08-07 16:37:11 +01:00
};
2022-09-20 14:26:47 +01:00
2023-05-29 16:43:26 +01:00
cursorTheme = {
package = pkgs.capitaine-cursors-themed;
name = "Capitaine Cursors (Gruvbox) - White";
size = 32;
};
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 17:52:09 +01:00
};
2022-12-16 08:10:28 +00:00
services.gnome-keyring.enable = true;
2023-05-25 15:44:15 +01:00
2022-11-14 11:58:04 +00:00
services.easyeffects = {
2023-06-01 21:20:44 +01:00
enable = true;
2023-05-10 13:37:18 +01:00
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-05-25 22:47:29 +01:00
2022-08-07 16:37:11 +01:00
home.stateVersion = "22.05";
}
2022-12-16 08:10:28 +00:00