1
0
Fork 0
nix-configuration/modules/users/gremlin/default.nix

127 lines
2.9 KiB
Nix
Raw Normal View History

2024-02-29 09:53:34 -05:00
{ pkgs, lib, config, ... }:
# Define 'gremlin' user
let
cfg = config.host.users.gremlin;
in
with lib;
{
options = {
host.users.gremlin = {
enable = mkEnableOption (mdDoc "Enables gremlin user account");
services.syncthing = {
enable = mkEnableOption (mdDoc "Enables Syncthing");
enableTray = mkEnableOption (mdDoc "Enables the Syncthing Tray application");
autostart = mkOption {
default = true;
type = types.bool;
description = "Whether to auto-start Syncthing on boot";
};
};
};
};
config = mkMerge [
(mkIf cfg.enable {
# Add Gremlin account
users.users.gremlin = {
isNormalUser = true;
description = "Gremlin";
uid = 1001;
extraGroups = [ "networkmanager" "input" ];
# Allow systemd services to keep running even while gremlin is logged out
linger = true;
};
# Install gremlin-specific flatpaks
2024-03-02 12:58:30 -05:00
services.flatpak.packages = lib.mkIf config.services.flatpak.enable [
2024-02-29 09:53:34 -05:00
"com.google.Chrome"
"com.slack.Slack"
];
home-manager.users.gremlin = {
imports = [
2024-05-04 10:40:10 -04:00
../common/home-manager/gnome.nix
../common/home-manager/zsh.nix
2024-02-29 09:53:34 -05:00
];
2024-04-13 17:02:35 -04:00
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
packages = [
pkgs.awscli2
];
};
2024-04-15 12:00:08 -04:00
programs = {
# Let home Manager install and manage itself.
home-manager.enable = true;
2024-02-29 09:53:34 -05:00
2024-04-15 12:00:08 -04:00
# Set up git
git = {
# Name and email set in nix-secrets
enable = true;
extraConfig = {
push.autoSetupRemote = "true";
};
};
2024-02-29 09:53:34 -05:00
2024-04-15 12:00:08 -04:00
# Set up Zsh
zsh = {
# Install and source the p10k theme
plugins = [
{ name = "powerlevel10k"; src = pkgs.zsh-powerlevel10k; file = "share/zsh-powerlevel10k/powerlevel10k.zsh-theme"; }
{ name = "powerlevel10k-config"; src = ./p10k-config; file = "p10k.zsh"; }
];
shellAliases = {
please = "sudo";
};
};
};
2024-03-21 16:17:06 -04:00
# SSH entries set in nix-secrets
2024-02-29 09:53:34 -05:00
};
})
# Enable Syncthing
2024-03-02 12:58:30 -05:00
(mkIf cfg.services.syncthing.enable {
2024-02-29 09:53:34 -05:00
users.users.gremlin = {
packages = [
pkgs.syncthing
2024-03-02 12:58:30 -05:00
(mkIf cfg.services.syncthing.enableTray pkgs.syncthingtray)
2024-02-29 09:53:34 -05:00
];
};
home-manager.users.gremlin = {
# Syncthing options
services.syncthing = {
enable = true;
extraOptions = [
"--gui-address=0.0.0.0:8081"
"--home=${config.users.users.gremlin.home}/.config/syncthing"
2024-02-29 09:53:34 -05:00
"--no-default-folder"
];
};
# Override the default Syncthing settings so it doesn't start on boot
2024-03-02 12:58:30 -05:00
systemd.user.services."syncthing" = mkIf (!cfg.services.syncthing.autostart) {
2024-02-29 09:53:34 -05:00
Install = lib.mkForce {};
};
};
})
];
}