nixos-config/home/home.nix

136 lines
2.9 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-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-24 16:11:23 -04:00
kanata-with-cmd
wezterm
emacs
fish
starship
lazygit
nnn
2024-09-24 23:26:29 -04:00
isync
msmtp
2024-09-24 16:11:23 -04:00
2024-09-23 23:35:58 -04:00
bitwarden-cli
bitwarden-desktop
tailscale
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-23 23:35:58 -04:00
gnome.gnome-software
2024-09-24 16:11:23 -04:00
gnome.gnome-tweaks
2024-09-24 17:37:03 -04:00
colloid-gtk-theme
colloid-icon-theme
2024-09-24 23:26:29 -04:00
turtle
papers
newsflash
helvum
librewolf
ungoogled-chromium
2024-09-24 17:14:56 -04:00
albert
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-23 23:35:58 -04:00
stateVersion = "24.05";
};
programs = {
home-manager.enable = true;
direnv = {
enable = true;
#enableFishIntegration = true; # see note on other shells below
nix-direnv.enable = true;
};
fish.enable = true;
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;
tailscale.enable = true;
};
2024-09-23 23:35:58 -04:00
xdg.systemDirs.data = [
"/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-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;
};
#xdg.configFile."fish/functions/ll.fish".source = ../dotfiles/dot_config/fish/functions/ll.fish;
#xdg.configFile."fish/functions/la.fish".source = ../dotfiles/dot_config/fish/functions/la.fish;
#xdg.configFile."fish/functions/lg.fish".source = ../dotfiles/dot_config/fish/functions/lg.fish;
#xdg.configFile."fish/functions/ls.fish".source = ../dotfiles/dot_config/fish/functions/ls.fish;
#xdg.configFile."fish/functions/sbcl.fish".source = ../dotfiles/dot_config/fish/functions/sbcl.fish;
#xdg.configFile."fish/functions/pullall.fish".source = ../dotfiles/dot_config/fish/functions/pullall.fish;
2024-09-22 01:04:11 -04:00
}