mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 01:17:42 -04:00
- Rename modules/hosts/common to modules/shared - Split shared into home/general, home/linux, and nixos subdirectories - Update all import paths in lib/ and modules/hosts/ - Fix hardcoded /Users/ path to use config.home.homeDirectory - Update .sops.yaml path for secrets
30 lines
690 B
Nix
30 lines
690 B
Nix
{ ... }: {
|
|
home.stateVersion = "24.05";
|
|
imports = [
|
|
../../../shared/home/general/all-gui.nix
|
|
../../../shared/home/linux/apps/tilix.nix
|
|
../../../shared/home/linux/apps/xfce4-terminal.nix
|
|
];
|
|
|
|
programs = {
|
|
vscode = {
|
|
enable = true;
|
|
};
|
|
wezterm = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
-- This will hold the configuration.
|
|
local config = wezterm.config_builder()
|
|
|
|
-- This is where you actually apply your config choices
|
|
|
|
-- For example, changing the color scheme:
|
|
config.color_scheme = 'AdventureTime'
|
|
|
|
-- and finally, return the configuration to wezterm
|
|
return config
|
|
'';
|
|
};
|
|
};
|
|
}
|
|
|