Evie Litherland-Smith
8c7f8dba52
Move collections to use default.nix in relevant directories Combine GUI elements into gui directory
18 lines
466 B
Nix
18 lines
466 B
Nix
{ ... }:
|
|
{
|
|
imports = [ ./personal.nix ];
|
|
# Home Manager needs a bit of information about you and the
|
|
# paths it should manage.
|
|
home.username = "tux";
|
|
home.homeDirectory = "/Users/tux";
|
|
home.stateVersion = "22.11";
|
|
|
|
services.syncthing.enable = true;
|
|
|
|
programs.zsh.shellAliases.update = "home-manager switch";
|
|
programs.fish.shellAbbrs.update = "home-manager switch";
|
|
programs.zsh.envExtra = ''
|
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
'';
|
|
}
|