Files
nixos-configs/hosts/pinwheel/home.nix
2023-08-28 19:03:11 +02:00

19 lines
271 B
Nix

{ pkgs, lib, ... }:
{
programs.home-manager.enable = true;
home.username = "alex";
home.homeDirectory = "/home/alex";
home.packages = with pkgs; [
emacs
gnumake
tig
bemenu
];
services.dunst.enable = true;
home.stateVersion = "23.05";
}