theme add

This commit is contained in:
2025-11-01 12:44:53 +09:00
parent cee6cd42d5
commit 9a9c543a41
3 changed files with 452 additions and 7 deletions

View File

@@ -1,5 +1,6 @@
{
inputs,
pkgs,
...
}:
let
@@ -61,7 +62,7 @@ in
extraSpecialArgs = { inherit inputs; };
# User Configuration - REQUIRED: Change "hydenix" to your actual username
# This must match the username you define in users.users below
users."hydenix" =
users."bangae1" =
{ ... }:
{
imports = [
@@ -72,9 +73,9 @@ in
};
# User Account Setup - REQUIRED: Change "hydenix" to your desired username (must match above)
users.users.hydenix = {
users.users.bangae1 = {
isNormalUser = true;
initialPassword = "hydenix"; # SECURITY: Change this password after first login with `passwd`
initialPassword = "1"; # SECURITY: Change this password after first login with `passwd`
extraGroups = [
"wheel"
"networkmanager"
@@ -88,11 +89,18 @@ in
enable = true; # Enable Hydenix modules
# Basic System Settings (REQUIRED):
hostname = "hydenix"; # REQUIRED: Set your computer's network name (change to something unique)
timezone = "America/Vancouver"; # REQUIRED: Set timezone (examples: "America/New_York", "Europe/London", "Asia/Tokyo")
locale = "en_CA.UTF-8"; # REQUIRED: Set locale/language (examples: "en_US.UTF-8", "en_GB.UTF-8", "de_DE.UTF-8")
timezone = "Asia/Seoul"; # REQUIRED: Set timezone (examples: "America/New_York", "Europe/London", "Asia/Tokyo")
locale = "ko_KR.UTF-8"; # REQUIRED: Set locale/language (examples: "en_US.UTF-8", "en_GB.UTF-8", "de_DE.UTF-8")
# For more configuration options, see: ./docs/options.md
};
environment.systemPackages = with pkgs; [
git
kime
google-chrome
nwg-displays
];
# System Version - Don't change unless you know what you're doing (helps with system upgrades and compatibility)
system.stateVersion = "25.05";
}