nix-dots/hosts/wano/home.nix
SindreKjelsrud 20fdb6abdd
Added more packages
- fish (enabled and set as default)
- tailscale (enabled it aswell)
- fastfetch
- librewolf (instead of firefox)
- signal
- localsend
- vscodium
- vlc
- gimp
- libreoffice
- prismlauncher
- calibre
- thunderbird
- ledgerlive
- nodejs
- pnpm

Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
2025-05-29 11:37:48 +02:00

69 lines
1.8 KiB
Nix

{ config, pkgs, ... }:
{
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "sid";
home.homeDirectory = "/home/sid";
# This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release
# introduces backwards incompatible changes.
#
# You should not change this value, even if you update Home Manager. If you do
# want to update the value, then make sure to first check the Home Manager
# release notes.
home.stateVersion = "25.05"; # Please read the comment before changing.
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = [
pkgs.gnupg
pkgs.pinentry-curses
];
# Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'.
home.file = {
};
# Home Manager can also manage your environment variables through
# 'home.sessionVariables'. These will be explicitly sourced when using a
# shell provided by Home Manager. If you don't want to manage your shell
# through Home Manager then you have to manually source 'hm-session-vars.sh'
# located at either
home.sessionVariables = {
# EDITOR = "emacs";
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
programs = {
# Nixhelper
nh = {
enable = true;
clean.enable = true;
clean.extraArgs = "--keep-since 4d --keep 3";
flake = "../../flake.nix";
};
# Vim config
vim = {
enable = true;
settings = {
tabstop = 2;
shiftwidth = 2;
};
};
# Enable fish
fish.enable = true;
};
# GPG setup
services.gpg-agent = {
enable = true;
pinentry.package = pkgs.pinentry-curses;
};
}