Files
spacestation/homes/guz.nix

19 lines
267 B
Nix
Raw Normal View History

2024-06-16 20:08:29 -03:00
{
config,
pkgs,
inputs,
lib,
...
}: {
imports = [
inputs.dot013-environment.homeManagerModule
];
programs.home-manager.enable = true;
home.username = "guz";
home.homeDirectory = "/home/guz";
home.stateVersion = "23.11"; # DO NOT CHANGE
}