feat: new setup for work laptop

This commit is contained in:
Jet 2026-04-23 20:18:40 -07:00
parent 572a731057
commit 17328f7089
No known key found for this signature in database
17 changed files with 1063 additions and 957 deletions

25
home-modules/core.nix Normal file
View file

@ -0,0 +1,25 @@
{ config, inputs, ... }:
{
imports = [ inputs.zen-browser.homeModules.default ];
home.username = "jet";
home.homeDirectory = "/home/jet";
home.stateVersion = "25.05";
home.sessionVariables = {
BROWSER = "zen";
TERMINAL = "kitty";
};
xdg.userDirs = {
enable = true;
setSessionVariables = true;
};
gtk = {
enable = true;
gtk4.theme = config.gtk.theme;
gtk3.extraConfig.gtk-application-prefer-dark-theme = 1;
};
}