os/system/dev-lt-63/home.nix

12 lines
188 B
Nix
Raw Normal View History

2023-05-21 22:26:26 +02:00
{ config, pkgs, lib, ... }:
{
home = {
username = "riley";
homeDirectory = "/home/riley";
stateVersion = "22.05";
};
programs = {
home-manager.enable = false;
};
}