1
0
Fork 0
nix-configuration/hosts/Shura/default.nix

126 lines
3.2 KiB
Nix
Raw Normal View History

2024-08-02 21:55:48 +00:00
{ config, pkgs, ... }:
let
2024-06-24 18:26:41 +00:00
# Do not change this value! This tracks when NixOS was installed on your system.
stateVersion = "24.05";
hostName = "Shura";
2024-06-24 18:26:41 +00:00
# Use gremlin user's monitor configuration for GDM (desktop monitor primary). See https://discourse.nixos.org/t/gdm-monitor-configuration/6356/4
monitorsXmlContent = builtins.readFile ./monitors.xml;
monitorsConfig = pkgs.writeText "gdm_monitors.xml" monitorsXmlContent;
2024-02-29 14:53:34 +00:00
in
{
imports = [ ./hardware-configuration.nix ];
2024-02-29 14:53:34 +00:00
2024-06-24 18:26:41 +00:00
system.stateVersion = stateVersion;
networking.hostName = hostName;
2024-02-29 14:53:34 +00:00
2024-10-25 20:41:26 +00:00
custom-fonts.Freight-Pro.enable = config.aux.system.users.gremlin.enable;
2024-08-29 18:01:33 +00:00
aux.system = {
apps = {
2024-05-24 03:50:42 +00:00
development.enable = true;
dj.enable = true;
gaming.enable = true;
media.enable = true;
office.enable = true;
recording.enable = true;
social.enable = true;
2024-07-29 21:11:12 +00:00
writing.enable = true;
};
2024-06-24 18:26:41 +00:00
# Configure the bootloader.
bootloader = {
enable = true;
secureboot.enable = true;
tpm2.enable = true;
};
2024-11-06 15:42:06 +00:00
bluetooth.adapter = "AC:50:DE:9F:AB:88";
2024-06-24 18:26:41 +00:00
# Change the default text editor. Options are "emacs", "nano", or "vim".
editor = "nano";
# Enable GPU support.
2024-06-24 17:08:18 +00:00
gpu.amd.enable = true;
2024-06-24 18:26:41 +00:00
packages = with pkgs; [
keepassxc # Use native instead of Flatpak due to weird performance issues
2024-06-24 18:26:41 +00:00
];
# Enable support for primary RAID array (just in case)
raid.storage.enable = true;
2024-08-16 20:49:08 +00:00
# Keep old generations for two weeks.
retentionPeriod = "14d";
2024-06-24 18:26:41 +00:00
2024-06-25 18:13:15 +00:00
services = {
# Run daily automatic updates.
autoUpgrade = {
enable = true;
configDir = config.secrets.nixConfigFolder;
onCalendar = "daily";
operation = "boot";
2024-06-25 18:13:15 +00:00
user = config.users.users.aires.name;
};
netdata = {
2024-10-16 20:12:40 +00:00
# FIXME: Disabled until I get Nginx configured to provide a streaming endpoint
enable = false;
type = "child";
url = config.secrets.services.netdata.url;
auth.apiKey = config.secrets.services.netdata.apiKey;
};
2024-06-25 18:13:15 +00:00
# Install virtual machine management tools
virtualization = {
enable = true;
host = {
user = "aires";
vmBuilds = {
enable = true;
cores = 4;
ram = 4096;
};
};
};
2024-06-24 16:24:21 +00:00
};
ui = {
flatpak = {
# Enable Flatpak support.
enable = true;
# Define Flatpak packages to install.
packages = [
"com.github.tchx84.Flatseal"
"com.github.wwmm.easyeffects"
"io.github.elevenhsoft.WebApps"
"md.obsidian.Obsidian"
"org.mozilla.firefox"
];
useBindFS = true;
};
2024-11-18 16:10:20 +00:00
desktops.gnome.enable = true;
};
users = {
aires = {
enable = true;
2024-11-15 21:16:22 +00:00
services.syncthing = {
enable = true;
enableTray = true;
web = {
enable = true;
port = 8080;
};
2024-11-15 21:16:22 +00:00
};
};
gremlin.enable = true;
};
};
2024-02-29 14:53:34 +00:00
# Move files into target system
systemd.tmpfiles.rules = [
# Use gremlin user's monitor config for GDM (defined above)
"L+ /run/gdm/.config/monitors.xml - - - - ${monitorsConfig}"
];
2024-02-29 14:53:34 +00:00
}