Files
nixos-dotfiles/home/default.nix
T
2026-06-18 19:03:46 -05:00

12 lines
213 B
Nix

{ config, pkgs, ... }:
{
imports = [
./programs/bash.nix
];
home.username = "river";
home.homeDirectory = "/home/river";
home.stateVersion = "26.05"; # Update this when changing nixpkgs releases
}