added homedir stuff

This commit is contained in:
Don Harper 2022-08-15 07:38:55 -05:00
parent a27781fbe1
commit 835ff3244d

50
user/don/home.nix Normal file
View file

@ -0,0 +1,50 @@
{ config, pkgs, ... }:
{
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = "don";
home.homeDirectory = "/home/don";
home.packages = [
pkgs.bc
pkgs.bitwarden-cli
pkgs.diff-so-fancy
pkgs.dmenu
pkgs.figlet
pkgs.fractal
pkgs.gnome.gnome-tweaks
pkgs.gtop
pkgs.isync
pkgs.jq
pkgs.keychain
pkgs.khal
pkgs.khard
pkgs.mpv
pkgs.mutt
pkgs.mutt-ics
pkgs.obsidian
pkgs.ruby
pkgs.signal-desktop
pkgs.slack
pkgs.sublime-music
pkgs.tasksh
pkgs.taskwarrior
pkgs.tdesktop
pkgs.topgrade
pkgs.vit
];
# 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 can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "22.05";
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}