diff options
author | Tyler Murphy <tylerm@tylerm.dev> | 2023-09-04 23:21:01 -0400 |
---|---|---|
committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-09-04 23:21:01 -0400 |
commit | db49f683129771d95828b01594c69431a717e8e8 (patch) | |
tree | d2cb1c0b865e4d81ce81f9a3176b8ad93a864950 /home-config/nix-home-manager/home.nix | |
download | dotfiles-guix-db49f683129771d95828b01594c69431a717e8e8.tar.gz dotfiles-guix-db49f683129771d95828b01594c69431a717e8e8.tar.bz2 dotfiles-guix-db49f683129771d95828b01594c69431a717e8e8.zip |
guix
Diffstat (limited to 'home-config/nix-home-manager/home.nix')
-rw-r--r-- | home-config/nix-home-manager/home.nix | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/home-config/nix-home-manager/home.nix b/home-config/nix-home-manager/home.nix new file mode 100644 index 0000000..1964f1c --- /dev/null +++ b/home-config/nix-home-manager/home.nix @@ -0,0 +1,31 @@ +{ config, pkgs, ... }: + +{ + # Home Manager needs a bit of information about you and the paths it should + # manage. + home.username = "tylerm"; + home.homeDirectory = "/home/tylerm"; + home.stateVersion = "22.11"; # Please read the comment before changing. + + # This value will set some environment variables to allow home-manager to + # function better outside of NixOS + nixpkgs.config.allowUnfree = true; + targets.genericLinux.enable = true; + fonts.fontconfig.enable = true; + + # The home.packages option allows you to install Nix packages into your + # environment. + home.packages = with pkgs; [ + yt-dlp + starship + discord + thunderbirdPackages.thunderbird-115 + rustup + glibc + gcc + ]; + + # Let Home Manager install and manage itself. + programs.home-manager.enable = true; +} + |