nixos/users/ruben/home.nix

218 lines
5.5 KiB
Nix

# This is your home-manager configuration file
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
{
inputs,
lib,
config,
pkgs,
...
}: {
# You can import other home-manager modules here
imports = [
# import the flatpaks home-manager nix
flake-inputs.flatpaks.homeManagerModules.nix-flatpak
# If you want to use home-manager modules from other flakes (such as nix-colors):
# inputs.nix-colors.homeManagerModule
# You can also split up your configuration and import pieces of it here:
# ./nvim.nix
];
nixpkgs = {
# You can add overlays here
overlays = [
# If you want to use overlays exported from other flakes:
# neovim-nightly-overlay.overlays.default
# Or define it inline, for example:
# (final: prev: {
# hi = final.hello.overrideAttrs (oldAttrs: {
# patches = [ ./change-hello-to-hi.patch ];
# });
# })
];
# Configure your nixpkgs instance
config = {
# Disable if you don't want unfree packages
allowUnfree = true;
# Workaround for https://github.com/nix-community/home-manager/issues/2942
allowUnfreePredicate = _: true;
};
};
home = {
username = "ruben";
homeDirectory = "/home/ruben";
};
# flatpaks
# TODO: unsure if i should even bother using flatpaks in a configuration/distro like this...
# maybe i can fully embrace flatpaks once i've figured out how to remove default packages
services.flatpak.remotes = lib.mkOptionDefault [{
name = "flathub-user";
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
}];
services.flatpak.update.auto.enable = true;
services.flatpak.uninstallUnmanaged = true;
# flatpak user packages
services.flatpak.packages = [
"org.kde.kdenlive"
"org.kde.krita"
"org.nicotine_plus.Nicotine"
"org.kde.okteta"
"md.obsidian.Obsidian"
"io.github.martinrotter.rssguardlite"
"com.dec05eba.gpu_screen_recorder"
"org.gajim.Gajim"
"in.cinny.Cinny"
"chat.revolt.RevoltDesktop"
"dev.vencord.Vesktop"
"org.signal.Signal"
"page.kramo.Cartridges"
"org.prismlauncher.PrismLauncher"
"org.libretro.RetroArch"
"net.pcsx2.PCSX2"
"org.duckstation.DuckStation"
"net.kuribo64.melonDS"
"org.DolphinEmu.dolphin-emu"
"org.ppsspp.PPSSPP"
"io.github.dosbox-staging"
"com.usebottles.bottles"
"net.davidotek.pupgui2"
"com.github.Matoking.protontricks"
"io.gitlab.azymohliad.WatchMate"
];
# Add stuff for your user as you see fit:
programs.neovim.enable = true;
home.packages = with pkgs; [
btop
bat
duf
fastfetch
fd
delta
lsd
ripgrep
sd
starship
zoxide
usbutils
jq
ffmpeg_6-full
imagemagick
yt-dlp
mpv
nextcloud-client
obs-studio
ventoy-full
];
# fuzzy command finder, required by a decent amount of things
programs.fzf = {
enable = true;
enableZshIntegration = true;
catppuccin.enable = true;
};
# my preferred shell customized to my needs
# TODO: theres only oh-my-zsh support out of the box, figure out
# how to customize sheldon and starship
programs.zsh = {
enable = true;
history.size = 50000;
syntaxHighlighting.enable = true;
};
programs.git = {
enable = true;
userName = "Sneexy";
userEmail = "sneexy@disroot.org";
signing.signByDefault = true;
#signing.key = ""; # TODO: fill this out
extraConfig = {
commit.verbose = true;
init.defaultBranch = "main";
};
};
programs.vscode = {
enable = true;
package = pkgs.vscodium;
extensions = with pkgs.vscode-extensions; [
vscodevim.vim
catppuccin.catppuccin-vsc
catppuccin.catppuccin-vsc-icons
arrterian.nix-env-selector
donjayamanne.githistory
];
userSettings = {
"editor.fontFamily" = "\'JetBrainsMono Nerd Font\', \'Terminus (TTF)\', \'Droid Sans Mono\', \'monospace\', monospace";
"editor.fontSize" = 16;
"workbench.colorTheme" = "Catppuccin Mocha";
#"workbench.iconTheme" = "material-icon-theme";
"files.eol" = "\n";
"editor.cursorBlinking" = "phase";
};
};
# this is a got damn NEO VIMME HOUSE !!
home.sessionVariables = {
EDITOR = "nvim";
};
# music!!
services.mpd = {
enable = true;
#extraConfig = ''
# ''audio_output {
# type "pipewire"
# name "PipeWire"
# }''
#'';
};
xdg.userDirs.enable = true;
# catppuccin flavour
catppuccin.flavour = "mocha";
# catppuccin's gtk theme
gtk = {
enable = true;
theme = {
name = "Catppuccin-Mocha-Compact-Green-Dark";
package = pkgs.catppuccin-gtk.override {
accents = [ "green" ];
size = "compact";
#tweaks = [ "rimless" "black" ];
variant = "mocha";
};
};
};
# required for catppuccin's gtk4 theme
xdg.configFile = {
"gtk-4.0/assets".source = "${config.gtk.theme.package}/share/themes/${config.gtk.theme.name}/gtk-4.0/assets";
"gtk-4.0/gtk.css".source = "${config.gtk.theme.package}/share/themes/${config.gtk.theme.name}/gtk-4.0/gtk.css";
"gtk-4.0/gtk-dark.css".source = "${config.gtk.theme.package}/share/themes/${config.gtk.theme.name}/gtk-4.0/gtk-dark.css";
};
# Nicely reload system units when changing configs
systemd.user.startServices = "sd-switch";
# Enable home-manager
programs.home-manager.enable = true;
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
home.stateVersion = "23.05";
}