Archived
1
0
This repository has been archived on 2026-05-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
spacestation/homes/guz.nix
Gustavo "Guz" L. de Mello c8247a3208 chore: format files
2024-06-16 20:08:29 -03:00

19 lines
267 B
Nix

{
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
}