nixos-config/home/home.nix

160 lines
3 KiB
Nix
Raw Normal View History

2024-09-23 23:35:58 -04:00
{ nix-flatpak, lib, pkgs, ... }:
2024-09-22 01:04:11 -04:00
{
2024-09-23 23:35:58 -04:00
nixpkgs.config.allowUnfree = true;
2024-09-22 01:04:11 -04:00
home = {
packages = with pkgs; [
2024-09-24 16:11:23 -04:00
gnupg
2024-09-22 01:04:11 -04:00
eza
just
fd
fzf
bat
jq
2024-09-24 16:11:23 -04:00
yt-dlp
htop
ripgrep
erdtree
2024-09-24 18:02:23 -04:00
age
2024-09-24 23:26:29 -04:00
figlet
ffmpeg
2024-09-27 14:22:31 -04:00
rlwrap
2024-09-27 08:50:52 -04:00
mesa
2024-09-25 23:50:11 -04:00
usbutils
2024-09-24 16:11:23 -04:00
pciutils
util-linux
coreutils
libgcc
raylib
SDL2
2024-09-24 23:26:29 -04:00
protonplus
2024-09-24 16:11:23 -04:00
ruby
janet
jpm
python3
sbcl
nodejs_18
platformio-core
2024-09-23 23:35:58 -04:00
2024-09-26 22:00:05 -04:00
borgmatic
2024-09-24 16:11:23 -04:00
kanata-with-cmd
wezterm
emacs
2024-09-27 14:28:04 -04:00
starship
lazygit
nnn
isync
msmtp
jetbrains-mono
2024-09-24 16:11:23 -04:00
fish
2024-09-27 14:17:11 -04:00
fishPlugins.foreign-env
fishPlugins.z
fishPlugins.fzf
fishPlugins.fifc
fishPlugins.bass
fishPlugins.autopair
2024-09-25 23:50:11 -04:00
2024-09-27 08:50:52 -04:00
via
2024-09-23 23:35:58 -04:00
bitwarden-cli
bitwarden-desktop
tailscale
2024-09-25 23:50:11 -04:00
protonplus
2024-09-24 16:11:23 -04:00
gnomeExtensions.just-perfection
gnomeExtensions.dash-to-dock
2024-09-24 17:14:56 -04:00
gnomeExtensions.pano
2024-09-25 23:50:11 -04:00
gnome-software
gnome-tweaks
2024-09-24 17:37:03 -04:00
colloid-gtk-theme
colloid-icon-theme
2024-09-25 23:50:11 -04:00
#turtle
2024-09-24 23:26:29 -04:00
papers
newsflash
2024-09-27 12:08:18 -04:00
#helvum
2024-09-24 23:26:29 -04:00
librewolf
ungoogled-chromium
2024-09-27 10:01:56 -04:00
ulauncher
2024-09-24 17:14:56 -04:00
obsidian
2024-09-24 16:11:23 -04:00
vlc
polychromatic
2024-09-23 23:35:58 -04:00
discord
slack
2024-09-24 16:11:23 -04:00
signal-desktop
libreoffice
plexamp
audacity
supercollider-with-plugins
bitwig-studio
blender
davinci-resolve-studio
2024-09-24 16:58:14 -04:00
steam
zotero_7
2024-09-22 01:04:11 -04:00
];
username = "emenel";
homeDirectory = "/home/emenel";
2024-09-27 14:57:18 -04:00
sessionPath = [ "/home/emenel/.config/emacs/bin" ];
2024-09-23 23:35:58 -04:00
stateVersion = "24.05";
};
2024-09-27 14:57:18 -04:00
2024-09-23 23:35:58 -04:00
programs = {
home-manager.enable = true;
direnv = {
enable = true;
#enableFishIntegration = true; # see note on other shells below
nix-direnv.enable = true;
};
2024-09-27 14:22:31 -04:00
fish = {
enable = true;
2024-09-27 14:28:04 -04:00
#vendor = {
# completions.enable = true;
# config.enable = true;
# functions.enable = true;
#};
2024-09-27 14:22:31 -04:00
};
2024-09-24 16:11:23 -04:00
starship = {
enable = true;
enableFishIntegration = true;
};
2024-09-22 01:04:11 -04:00
};
2024-09-23 09:46:14 -04:00
2024-09-24 23:26:29 -04:00
services = {
flatpak.enable = true;
2024-09-24 23:46:34 -04:00
#tailscale.enable = true;
2024-09-24 23:26:29 -04:00
};
2024-09-23 23:35:58 -04:00
xdg.systemDirs.data = [
2024-09-25 23:50:11 -04:00
"/home/emenel/.local/share/applications/wine/Programs"
2024-09-23 23:35:58 -04:00
"/home/emenel/.local/share/applications"
"/var/lib/flatpak/exports/share"
"/home/emenel/.local/share/flatpak/exports/share"
"/home/emenel/.nix-profile/share/applications"
];
services.flatpak.packages = [
"io.github.zen_browser.zen"
2024-09-24 23:26:29 -04:00
"com.github.johnfactotum.QuickLookup"
2024-09-23 23:35:58 -04:00
];
2024-09-27 11:24:24 -04:00
xdg.configFile."kmonad".source = ../dotfiles/dot_config/kmonad;
2024-09-27 10:01:56 -04:00
2024-09-24 23:26:29 -04:00
xdg.configFile."starship.toml".source = ../dotfiles/dot_config/starship.toml;
xdg.configFile."wezterm".source = ../dotfiles/dot_config/wezterm;
xdg.configFile."fish/functions" = {
source = ../dotfiles/dot_config/fish/functions;
recursive = true;
};
2024-09-25 23:50:11 -04:00
xdg.configFile."emacs".enable = false;
2024-09-27 15:00:27 -04:00
home.file.".config/doom" = {
enable = true;
recursive = true;
src = ../dotfiles/dot_config/doom;
};
2024-09-22 01:04:11 -04:00
}