156 lines
3.7 KiB
Nix
156 lines
3.7 KiB
Nix
{ pkgs, lib, config, ... }:
|
|
|
|
# Define 'aires'
|
|
let
|
|
cfg = config.host.users.aires;
|
|
in
|
|
with lib;
|
|
{
|
|
options = {
|
|
host.users.aires = {
|
|
enable = mkEnableOption (mdDoc "Enables aires user account");
|
|
autologin = mkEnableOption (mdDoc "Automatically logs aires in on boot");
|
|
|
|
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 = mkIf cfg.enable (mkMerge [
|
|
{
|
|
users.users.aires = {
|
|
isNormalUser = true;
|
|
description = "Aires";
|
|
uid = 1000;
|
|
extraGroups = [ "input" "networkmanager" "plugdev" "tss" "wheel" ]; # tss group has access to TPM devices
|
|
|
|
# Allow systemd services to run even while aires is logged out
|
|
linger = true;
|
|
};
|
|
|
|
# Install aires-specific Flatpaks
|
|
services.flatpak.packages = mkIf config.services.flatpak.enable [
|
|
"com.discordapp.Discord"
|
|
"org.telegram.desktop"
|
|
];
|
|
|
|
# Configure home-manager
|
|
home-manager.users.aires = {
|
|
imports = [
|
|
../common/gnome.nix
|
|
../common/zsh.nix
|
|
];
|
|
|
|
home = {
|
|
# The state version is required and should stay at the version you originally installed.
|
|
stateVersion = "24.05";
|
|
|
|
# Basic setup
|
|
username = "aires";
|
|
homeDirectory = "/home/aires";
|
|
|
|
# Install extra packages, specifically gnome extensions
|
|
packages = lib.mkIf config.host.ui.gnome.enable [
|
|
pkgs.gnomeExtensions.wallpaper-slideshow
|
|
];
|
|
|
|
# Set environment variables
|
|
sessionVariables = {
|
|
KUBECONFIG = "/home/aires/.kube/config";
|
|
};
|
|
};
|
|
|
|
programs = {
|
|
# Let home Manager install and manage itself.
|
|
home-manager.enable = true;
|
|
|
|
# Set up git
|
|
git = {
|
|
enable = true;
|
|
# Username and email set in nix-secrets
|
|
extraConfig = {
|
|
push.autoSetupRemote = "true";
|
|
};
|
|
};
|
|
|
|
# Set up Zsh
|
|
zsh = {
|
|
oh-my-zsh = {
|
|
theme = "gentoo";
|
|
};
|
|
shellAliases = {
|
|
update = "upgrade";
|
|
upgrade = "nh os boot --update --ask";
|
|
protontricks = "flatpak run com.github.Matoking.protontricks";
|
|
please = "sudo";
|
|
};
|
|
loginExtra = "fastfetch";
|
|
};
|
|
};
|
|
|
|
# SSH set up in nix-secrets
|
|
|
|
# Gnome settings specific to aires on Shura
|
|
dconf.settings = lib.mkIf (config.networking.hostName == "Shura") {
|
|
"org/gnome/desktop/interface" = {
|
|
# Increase font scaling(if config.networking.hostName == "Haven" then false else true);
|
|
text-scaling-factor = 1.2;
|
|
|
|
# Dark mode
|
|
color-scheme = "prefer-dark";
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|
|
# Autologin aires
|
|
(mkIf cfg.autologin {
|
|
services.displayManager.autoLogin = {
|
|
enable = true;
|
|
user = "aires";
|
|
};
|
|
systemd.services = {
|
|
"getty@tty1".enable = false;
|
|
"autovt@tty1".enable = false;
|
|
};
|
|
})
|
|
|
|
# Enable Syncthing
|
|
(mkIf cfg.services.syncthing.enable {
|
|
users.users.aires.packages = [
|
|
pkgs.syncthing
|
|
(mkIf cfg.services.syncthing.enableTray pkgs.syncthingtray)
|
|
];
|
|
|
|
# Open port 8080
|
|
networking.firewall.allowedTCPPorts = [
|
|
8080
|
|
];
|
|
|
|
home-manager.users.aires = {
|
|
# Syncthing options
|
|
services.syncthing = {
|
|
enable = true;
|
|
extraOptions = [
|
|
"--gui-address=0.0.0.0:8080"
|
|
"--home=${config.users.users.aires.home}/.config/syncthing"
|
|
"--no-default-folder"
|
|
];
|
|
};
|
|
|
|
# Override the default Syncthing settings so it doesn't start on boot
|
|
systemd.user.services."syncthing" = mkIf (!cfg.services.syncthing.autostart) {
|
|
Install = lib.mkForce {};
|
|
};
|
|
};
|
|
})
|
|
]);
|
|
}
|