2024-05-07 18:02:59 -04:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}:
|
2024-02-29 09:53:34 -05:00
|
|
|
|
|
|
|
# Define 'gremlin' user
|
|
|
|
let
|
2024-06-24 11:38:28 -04:00
|
|
|
cfg = config.aux.system.users.gremlin;
|
2024-02-29 09:53:34 -05:00
|
|
|
in
|
|
|
|
{
|
2024-05-07 18:02:59 -04:00
|
|
|
options = {
|
2024-06-24 11:38:28 -04:00
|
|
|
aux.system.users.gremlin = {
|
2024-08-02 17:55:48 -04:00
|
|
|
enable = lib.mkEnableOption "Enables gremlin user account";
|
2024-05-07 18:02:59 -04:00
|
|
|
|
|
|
|
services.syncthing = {
|
2024-08-02 17:55:48 -04:00
|
|
|
enable = lib.mkEnableOption "Enables Syncthing";
|
|
|
|
enableTray = lib.mkEnableOption "Enables the Syncthing Tray application";
|
2024-09-08 13:17:40 -04:00
|
|
|
home = lib.mkOption {
|
|
|
|
default = "${config.users.users.gremlin.home}/.config/syncthing";
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "Where to store Syncthing's configuration files";
|
2024-05-07 18:02:59 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-08-02 17:55:48 -04:00
|
|
|
config = lib.mkMerge [
|
|
|
|
(lib.mkIf cfg.enable {
|
2024-05-07 18:02:59 -04:00
|
|
|
# Add Gremlin account
|
|
|
|
users.users.gremlin = {
|
|
|
|
isNormalUser = true;
|
|
|
|
description = "Gremlin";
|
|
|
|
uid = 1001;
|
2024-05-16 12:19:04 -04:00
|
|
|
hashedPassword = config.secrets.users.gremlin.hashedPassword;
|
2024-05-07 18:02:59 -04:00
|
|
|
extraGroups = [
|
|
|
|
"networkmanager"
|
|
|
|
"input"
|
|
|
|
];
|
|
|
|
|
|
|
|
# Allow systemd services to keep running even while gremlin is logged out
|
|
|
|
linger = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Install gremlin-specific flatpaks
|
2024-06-28 10:14:30 -04:00
|
|
|
aux.system.ui.flatpak.packages = [
|
2024-05-07 18:02:59 -04:00
|
|
|
"com.google.Chrome"
|
|
|
|
"com.slack.Slack"
|
|
|
|
];
|
|
|
|
|
|
|
|
home-manager.users.gremlin = {
|
|
|
|
imports = [
|
|
|
|
../common/home-manager/gnome.nix
|
|
|
|
../common/home-manager/zsh.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
home = {
|
|
|
|
# Basic setup
|
|
|
|
username = "gremlin";
|
|
|
|
homeDirectory = "/home/gremlin";
|
|
|
|
|
|
|
|
# The state version is required and should stay at the version you originally installed.
|
|
|
|
stateVersion = "24.05";
|
|
|
|
|
|
|
|
# Set environment variables
|
|
|
|
sessionVariables = {
|
|
|
|
KUBECONFIG = "/home/gremlin/.kube/config";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Install packages specific to Gremlin
|
2024-08-30 10:34:13 -04:00
|
|
|
packages = [
|
|
|
|
pkgs.awscli2
|
|
|
|
pkgs.unstable.figma-linux
|
|
|
|
];
|
2024-05-26 20:23:42 -04:00
|
|
|
|
|
|
|
# Create .face file
|
|
|
|
file.".face".source = ./face.png;
|
2024-05-07 18:02:59 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
programs = {
|
|
|
|
# Let home Manager install and manage itself.
|
|
|
|
home-manager.enable = true;
|
|
|
|
|
2024-06-27 15:14:49 -04:00
|
|
|
# Set up git to match Aires' configuration
|
|
|
|
git = config.home-manager.users.aires.programs.git;
|
2024-05-07 18:02:59 -04:00
|
|
|
|
2024-05-16 20:08:57 -04:00
|
|
|
# Set up SSH
|
|
|
|
ssh = {
|
|
|
|
enable = true;
|
|
|
|
matchBlocks = config.secrets.users.gremlin.sshConfig;
|
|
|
|
};
|
2024-11-08 09:38:25 -05:00
|
|
|
|
|
|
|
# Set up Zsh
|
|
|
|
zsh = {
|
|
|
|
oh-my-zsh = {
|
|
|
|
theme = "gnzh";
|
|
|
|
};
|
|
|
|
};
|
2024-05-07 18:02:59 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
})
|
|
|
|
|
|
|
|
# Enable Syncthing
|
2024-08-02 17:55:48 -04:00
|
|
|
(lib.mkIf cfg.services.syncthing.enable {
|
2024-05-07 18:02:59 -04:00
|
|
|
users.users.gremlin = {
|
|
|
|
packages = [
|
|
|
|
pkgs.syncthing
|
2024-08-02 17:55:48 -04:00
|
|
|
(lib.mkIf cfg.services.syncthing.enableTray pkgs.syncthingtray)
|
2024-05-07 18:02:59 -04:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
home-manager.users.gremlin = {
|
|
|
|
# Syncthing options
|
|
|
|
services.syncthing = {
|
|
|
|
enable = true;
|
|
|
|
extraOptions = [
|
|
|
|
"--gui-address=0.0.0.0:8081"
|
2024-09-08 13:17:40 -04:00
|
|
|
"--home=${cfg.services.syncthing.home}"
|
2024-05-07 18:02:59 -04:00
|
|
|
"--no-default-folder"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2024-09-08 13:55:06 -04:00
|
|
|
systemd.user.services."syncthing".Unit.RequiresMountsFor = cfg.services.syncthing.home;
|
2024-05-07 18:02:59 -04:00
|
|
|
};
|
|
|
|
})
|
|
|
|
];
|
2024-02-29 09:53:34 -05:00
|
|
|
}
|