2022-07-01 21:32:23 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
users.users.mae = {
|
|
|
|
uid = 1000;
|
|
|
|
|
|
|
|
isNormalUser = true;
|
|
|
|
hashedPassword = "$6$vyS4lqYbl3$OXztJnAC5ZayA4eCBSIRlYtsi9u1HnafsfNL28l4CJh0BISVlSj6D48CA80cshnvYW/EEzfEj7z4zTNFpJAT/.";
|
|
|
|
shell = pkgs.zsh;
|
|
|
|
extraGroups = [ "wheel" "video" "lp" "scanner" "adbusers" "render" "libvirtd" "podman" "docker" ];
|
|
|
|
};
|
2022-07-03 01:06:34 +02:00
|
|
|
home-manager.users.mae = { pkgs, ... }: {
|
2022-09-21 14:56:03 +02:00
|
|
|
imports = [ ../profiles/core ../profiles/direnv ../profiles/git ../profiles/zsh ../profiles/neovim ../profiles/syncthing ../profiles/kdeconnect ../profiles/podman ../profiles/tmux ../profiles/mpv ../profiles/sway ];
|
2022-09-19 15:56:01 +02:00
|
|
|
mae.alacritty.enable = true;
|
2022-07-01 21:32:23 +02:00
|
|
|
|
|
|
|
home.sessionVariables = {
|
|
|
|
XDG_DATA_DIRS = "$XDG_DATA_DIRS:/var/lib/flatpak/exports/share:$HOME/.local/share/flatpak/exports/share";
|
|
|
|
MOZ_ENABLE_WAYLAND = 1;
|
|
|
|
};
|
|
|
|
home.stateVersion = "18.09";
|
|
|
|
gtk = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
theme = {
|
|
|
|
name = "Arc-Dark";
|
|
|
|
package = pkgs.arc-theme;
|
|
|
|
};
|
|
|
|
|
|
|
|
gtk3.extraConfig = {
|
|
|
|
gtk-application-prefer-dark-theme = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
programs.go = {
|
|
|
|
enable = true;
|
|
|
|
goPath = ".local/go";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|