Files
nix/home/default.nix

22 lines
557 B
Nix
Raw Normal View History

{self, ...}: {
home.username = "guz";
home.homeDirectory = "/home/guz";
imports = [
self.homeManagerModules.devenv
2025-02-06 09:52:18 -03:00
self.homeManagerModules.zen-browser
./desktop.nix
./keymaps.nix
];
2025-02-06 09:52:18 -03:00
programs.zen-browser.enable = true;
# The *state version* indicates which default
# settings are in effect and will therefore help avoid breaking
# program configurations. Switching to a higher state version
# typically requires performing some manual steps, such as data
# conversion or moving files.
home.stateVersion = "24.11";
}