nixos-config/home/home.nix

197 lines
3.8 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-28 18:41:21 -04:00
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-28 20:28:06 -04:00
pinentry
unrar
unzip
zip
htop
2024-09-28 23:41:26 -04:00
opendrop
owl
2024-09-29 00:19:07 -04:00
pass
2024-09-29 00:25:45 -04:00
dconf
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
2024-09-28 20:28:06 -04:00
python311Packages.pip
2024-09-24 16:11:23 -04:00
sbcl
nodejs_18
platformio-core
2024-09-28 23:14:36 -04:00
real_time_config_quick_scan
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
2024-09-27 14:28:04 -04:00
lazygit
nnn
2024-09-29 01:13:48 -04:00
icloudpd
2024-09-27 14:28:04 -04:00
jetbrains-mono
2024-09-27 14:17:11 -04:00
fishPlugins.foreign-env
fishPlugins.z
fishPlugins.fzf
fishPlugins.bass
fishPlugins.autopair
2024-09-25 23:50:11 -04:00
2024-09-27 08:50:52 -04:00
via
2024-09-28 23:14:36 -04:00
bitwarden-cli
bitwarden-desktop
2024-09-28 20:28:06 -04:00
rbw
2024-09-28 23:14:36 -04:00
tailscale
2024-09-25 23:50:11 -04:00
protonplus
2024-09-28 23:19:48 -04:00
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-29 01:13:48 -04:00
gnome-photos
2024-09-24 17:37:03 -04:00
colloid-gtk-theme
colloid-icon-theme
2024-09-28 23:19:48 -04:00
whitesur-gtk-theme
whitesur-cursors
whitesur-icon-theme
graphite-gtk-theme
graphite-cursors
2024-09-24 23:26:29 -04:00
papers
newsflash
2024-09-29 00:19:07 -04:00
2024-09-29 01:13:48 -04:00
nyxt
2024-09-24 23:26:29 -04:00
librewolf
ungoogled-chromium
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-28 12:23:29 -04:00
handbrake
2024-09-28 18:41:21 -04:00
renoise
2024-09-29 01:13:48 -04:00
yabridge
yabridgectl
ansel
rawtherapee
2024-09-22 01:04:11 -04:00
];
username = "emenel";
homeDirectory = "/home/emenel";
2024-09-29 01:33:45 -04:00
sessionPath = [ "/home/emenel/.config/emacs/bin"
"/home/emenel/.config/fish/functions" ];
2024-09-27 14:57:18 -04:00
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-24 16:11:23 -04:00
starship = {
enable = true;
enableFishIntegration = true;
};
2024-09-27 15:36:18 -04:00
mu.enable = true;
2024-09-27 16:03:19 -04:00
mbsync.enable = true;
2024-09-27 16:05:40 -04:00
msmtp.enable = true;
2024-09-28 23:14:36 -04:00
emacs = {
enable = true;
package = pkgs.emacs;
extraPackages = epkgs: [
epkgs.mu4e
2024-09-28 23:57:53 -04:00
epkgs.vterm
2024-09-28 23:14:36 -04:00
];
};
2024-09-22 01:04:11 -04:00
};
2024-09-28 12:19:48 -04:00
2024-09-28 23:57:53 -04:00
dconf.settings = {
2024-09-29 01:13:48 -04:00
"org/gnome/shell/keybindings" = {
shift-overview-up = ["disabled"];
shift-overview-down = ["disabled"];
2024-09-29 00:01:22 -04:00
};
2024-09-28 23:57:53 -04:00
};
2024-09-28 18:41:21 -04:00
nixpkgs.config.packageOverrides = pkgs: {
renoise = pkgs.renoise.override {
releasePath = /home/emenel/temp/rns_344_linux_x86_64.tar.gz;
};
};
2024-09-23 09:46:14 -04:00
2024-09-24 23:26:29 -04:00
services = {
flatpak.enable = true;
};
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;
2024-09-29 01:13:48 -04:00
home.file.".config/fish/functions" = {
2024-09-24 23:26:29 -04:00
source = ../dotfiles/dot_config/fish/functions;
recursive = true;
};
2024-09-25 23:50:11 -04:00
xdg.configFile."emacs".enable = false;
2024-09-27 16:14:39 -04:00
home.file.".msmtprc".source = ../dotfiles/dot_msmtprc;
2024-09-27 16:15:56 -04:00
home.file.".mbsyncrc".source = ../dotfiles/dot_mbsyncrc;
2024-09-29 01:33:45 -04:00
home.file.".local/share/flf".source = ../dotfiles/dot_local/share/flf;
2024-09-22 01:04:11 -04:00
}