nixos-config/hosts/default/home.nix
2024-07-11 20:41:43 +09:00

65 lines
1.7 KiB
Nix

{ inputs,onfig, pkgs, ... }:
{
imports =
[
../../modules/home-manager
../../modules/home-manager/ricing/stylix
];
home.username = "shoi";
home.homeDirectory = "/home/shoi";
# 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 = "24.05"; # Please read the comment before changing.
home.packages = with pkgs; [
# For funsies
spotify
vesktop
# Other utility
mullvad-vpn
transmission_4-gtk
imagemagick
];
# Enable sound control
services.easyeffects.enable = true;
# 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
#
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# ~/.local/state/nix/profiles/profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# /etc/profiles/per-user/shoi/etc/profile.d/hm-session-vars.sh
#
home.sessionVariables = {
# EDITOR = "emacs";
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}