Removed Install.sh and hosts folder as they arent needed. -> All options can be configured in flake.nix
This commit is contained in:
@ -1,19 +0,0 @@
|
|||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
./hardware.nix
|
|
||||||
./host-packages.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
# Enable sddm display manager
|
|
||||||
services.displayManager.sddm.enable = true;
|
|
||||||
|
|
||||||
# Sysc-greet display manager
|
|
||||||
services.sysc-greet.enable = false;
|
|
||||||
|
|
||||||
# Keep niri available at system level for ly display manager to detect it
|
|
||||||
programs.niri.package = pkgs.niri;
|
|
||||||
|
|
||||||
# Ensure niri session is available to display manager
|
|
||||||
services.displayManager.sessionPackages = [ pkgs.niri ];
|
|
||||||
}
|
|
||||||
@ -1,55 +0,0 @@
|
|||||||
# Do not modify this file! It was generated by 'nixos-generate-config'
|
|
||||||
# and may be overwritten by future invocations. Please make changes
|
|
||||||
# to /etc/nixos/configuration.nix instead.
|
|
||||||
{
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
modulesPath,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
(modulesPath + "/installer/scan/not-detected.nix")
|
|
||||||
];
|
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [
|
|
||||||
"xhci_pci"
|
|
||||||
"ahci"
|
|
||||||
"nvme"
|
|
||||||
"usbhid"
|
|
||||||
];
|
|
||||||
boot.initrd.kernelModules = [ ];
|
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
|
||||||
boot.extraModulePackages = [ ];
|
|
||||||
|
|
||||||
fileSystems."/" = {
|
|
||||||
device = "/dev/disk/by-uuid/00000000-0000-0000-0000-000000000000";
|
|
||||||
fsType = "ext4";
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems."/boot" = {
|
|
||||||
device = "/dev/disk/by-uuid/0000-0000";
|
|
||||||
fsType = "vfat";
|
|
||||||
options = [
|
|
||||||
"fmask=0077"
|
|
||||||
"dmask=0077"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
swapDevices = [
|
|
||||||
{ device = "/dev/disk/by-uuid/00000000-0000-0000-0000-000000000000"; }
|
|
||||||
];
|
|
||||||
|
|
||||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
|
||||||
# (the default) this is the recommended approach. When using systemd-networkd it's
|
|
||||||
# still possible to use this option, but it's recommended to use it in conjunction
|
|
||||||
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
|
||||||
networking.useDHCP = lib.mkDefault true;
|
|
||||||
# networking.interfaces.enp4s0.useDHCP = lib.mkDefault true;
|
|
||||||
# networking.interfaces.wlo1.useDHCP = lib.mkDefault true;
|
|
||||||
|
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
||||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
||||||
}
|
|
||||||
@ -1,6 +0,0 @@
|
|||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
# Add host-specific packages here
|
|
||||||
];
|
|
||||||
}
|
|
||||||
@ -1,113 +0,0 @@
|
|||||||
{
|
|
||||||
# Git Configuration ( For Pulling Software Repos )
|
|
||||||
gitUsername = "user";
|
|
||||||
gitEmail = "user@example.com";
|
|
||||||
|
|
||||||
# System Configuration
|
|
||||||
timeZone = "America/New_York";
|
|
||||||
|
|
||||||
# Hyprland Settings
|
|
||||||
# ex "monitor=HDMI-A-1, 1920x1080@60,auto,1"
|
|
||||||
# Configure your monitors here - this is host-specific
|
|
||||||
extraMonitorSettings = ''
|
|
||||||
monitor=,preferred,auto,1
|
|
||||||
'';
|
|
||||||
|
|
||||||
# Waybar Settings
|
|
||||||
clock24h = false;
|
|
||||||
|
|
||||||
# Program Options
|
|
||||||
browser = "zen"; # Set Default Browser (google-chrome-stable for google-chrome)
|
|
||||||
terminal = "kitty"; # Set Default System Terminal
|
|
||||||
keyboardLayout = "us";
|
|
||||||
consoleKeyMap = "us";
|
|
||||||
|
|
||||||
# For Nvidia Prime support
|
|
||||||
# Run 'lspci | grep VGA' to find your actual GPU IDs
|
|
||||||
intelID = "PCI:0:2:0"; # Update with your integrated GPU ID
|
|
||||||
nvidiaID = "PCI:1:0:0"; # Update with your NVIDIA GPU ID
|
|
||||||
|
|
||||||
# Enable Nvidia cudaSupport for specific applications (obs-studio)
|
|
||||||
useNvidia = false;
|
|
||||||
|
|
||||||
# Enable NFS
|
|
||||||
enableNFS = true;
|
|
||||||
|
|
||||||
# Enable Printing Support
|
|
||||||
printEnable = false;
|
|
||||||
|
|
||||||
# Enable Thunar GUI File Manager
|
|
||||||
thunarEnable = true;
|
|
||||||
|
|
||||||
# Enable Gaming Support (controllers, gamescope, protonup-qt)
|
|
||||||
gamingSupportEnable = false;
|
|
||||||
|
|
||||||
# Enable Flutter Development Environment
|
|
||||||
flutterdevEnable = false;
|
|
||||||
|
|
||||||
# Enable Stylix System Theming
|
|
||||||
stylixEnable = true;
|
|
||||||
|
|
||||||
# Enable Syncthing File Synchronization
|
|
||||||
syncthingEnable = false;
|
|
||||||
|
|
||||||
# Enable Communication Apps (Teams, Zoom, Telegram, Discord)
|
|
||||||
enableCommunicationApps = false;
|
|
||||||
|
|
||||||
# Enable Extra Browsers (Chromium, Google Chrome)
|
|
||||||
enableExtraBrowsers = false;
|
|
||||||
|
|
||||||
# Enable Productivity Apps (Obsidian, GNOME Boxes, QuickEmu)
|
|
||||||
enableProductivityApps = false;
|
|
||||||
|
|
||||||
# Enable AI Code Editors (cursor, claude-code, gemini-cli)
|
|
||||||
aiCodeEditorsEnable = false;
|
|
||||||
|
|
||||||
# Enable Hyprlock (Hyprland lock screen)
|
|
||||||
# Set to false if using DMS or Noctalia lock screens
|
|
||||||
enableHyprlock = false;
|
|
||||||
|
|
||||||
# Bar/Shell Choice
|
|
||||||
barChoice = "noctalia"; # Options: "dms" or "noctalia"
|
|
||||||
# NOTE: If you change barChoice to "dms", you must run 'dms-install' after rebuilding
|
|
||||||
|
|
||||||
# Shell Choice
|
|
||||||
defaultShell = "zsh"; # Options: "fish" or "zsh"
|
|
||||||
|
|
||||||
# Set Stylix Image
|
|
||||||
#stylixImage = ../../wallpapers/AnimeGirlNightSky.jpg;
|
|
||||||
#stylixImage = ../../wallpapers/nix-wallpaper-stripes-logo.png;
|
|
||||||
#stylixImage = ../../wallpapers/beautifulmountainscape.png;
|
|
||||||
#stylixImage = ../../wallpapers/mountainscapedark.jpg;
|
|
||||||
#stylixImage = ../../wallpapers/Rainnight.jpg;
|
|
||||||
#stylixImage = ../../wallpapers/zaney-wallpaper.jpg;
|
|
||||||
stylixImage = ../../wallpapers/55.png;
|
|
||||||
|
|
||||||
# Set Waybar (temporarily disabled - use DMS or Noctalia)
|
|
||||||
# Includes alternates such as:
|
|
||||||
# Just uncomment the one you want and comment out the others
|
|
||||||
|
|
||||||
#waybarChoice = ../../modules/home/waybar/Jerry-waybars.nix;
|
|
||||||
#waybarChoice = ../../modules/home/waybar/waybar-simple.nix;
|
|
||||||
#waybarChoice = ../../modules/home/waybar/waybar-curved.nix;
|
|
||||||
#waybarChoice = ../../modules/home/waybar/waybar-nekodyke.nix;
|
|
||||||
#waybarChoice = ../../modules/home/waybar/waybar-jerry.nix;
|
|
||||||
#waybarChoice = ../../modules/home/waybar/waybar-ddubs.nix;
|
|
||||||
|
|
||||||
# Set Animation style
|
|
||||||
# Available options are:
|
|
||||||
# animations-def.nix (standard)
|
|
||||||
# animations-end4.nix (end-4 project)
|
|
||||||
# animations-dynamic.nix (ml4w project)
|
|
||||||
# animations-moving.nix (ml4w project)
|
|
||||||
# Just change the name after the - and rebuild
|
|
||||||
animChoice = ../../modules/home/hyprland/animations-end4.nix;
|
|
||||||
#animChoice = ../../modules/home/hyprland/animations-def.nix;
|
|
||||||
#animChoice = ../../modules/home/hyprland/animations-dynamix.nix;
|
|
||||||
# Note: Moving changes window resizing it shrinks then pops back
|
|
||||||
#animChoice = ../../modules/home/hyprland/animations-moving.nix;
|
|
||||||
|
|
||||||
# Startup Applications
|
|
||||||
startupApps = [
|
|
||||||
];
|
|
||||||
}
|
|
||||||
504
install.sh
504
install.sh
@ -1,504 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
######################################
|
|
||||||
# Black Don OS - Simplified Installer (Modified)
|
|
||||||
# A NixOS configuration for everyone
|
|
||||||
######################################
|
|
||||||
|
|
||||||
set -e # Exit on error
|
|
||||||
|
|
||||||
# Colors
|
|
||||||
RED='\033[0;31m'
|
|
||||||
GREEN='\033[0;32m'
|
|
||||||
YELLOW='\033[1;33m'
|
|
||||||
BLUE='\033[0;34m'
|
|
||||||
NC='\033[0m'
|
|
||||||
|
|
||||||
# Print functions
|
|
||||||
print_header() {
|
|
||||||
echo -e "${GREEN}╔═══════════════════════════════════════════════════════════════╗${NC}"
|
|
||||||
echo -e "${GREEN}║ ${1}${NC}"
|
|
||||||
echo -e "${GREEN}╚═══════════════════════════════════════════════════════════════╝${NC}"
|
|
||||||
}
|
|
||||||
|
|
||||||
print_error() {
|
|
||||||
echo -e "${RED}✗ Error: ${1}${NC}"
|
|
||||||
}
|
|
||||||
|
|
||||||
print_success() {
|
|
||||||
echo -e "${GREEN}✓ ${1}${NC}"
|
|
||||||
}
|
|
||||||
|
|
||||||
print_info() {
|
|
||||||
echo -e "${BLUE}ℹ ${1}${NC}"
|
|
||||||
}
|
|
||||||
|
|
||||||
# Welcome
|
|
||||||
clear
|
|
||||||
print_header "Cookiez NixOS - Simplified Installation"
|
|
||||||
echo ""
|
|
||||||
echo -e "${BLUE}Welcome! This installer will set up NixOS with sensible defaults.${NC}"
|
|
||||||
echo -e "${BLUE}You can customize everything later by editing your variables.nix file.${NC}"
|
|
||||||
echo ""
|
|
||||||
sleep 2
|
|
||||||
|
|
||||||
# Verify NixOS
|
|
||||||
print_header "System Verification"
|
|
||||||
if [ -n "$(grep -i nixos < /etc/os-release)" ]; then
|
|
||||||
print_success "Running on NixOS"
|
|
||||||
else
|
|
||||||
print_error "This installer requires NixOS"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check dependencies
|
|
||||||
if ! command -v git &> /dev/null || ! command -v lspci &> /dev/null; then
|
|
||||||
print_error "Missing dependencies. Please run:"
|
|
||||||
echo -e " ${GREEN}nix-shell -p git pciutils${NC}"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
print_success "All dependencies found"
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
# Get hostname
|
|
||||||
print_header "Hostname Configuration"
|
|
||||||
echo -e "${YELLOW}⚠️ Do NOT use 'default' as your hostname!${NC}"
|
|
||||||
echo -e "Suggested names: my-desktop, nixos-laptop, gaming-rig"
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
while true; do
|
|
||||||
read -p "Enter hostname [nixos]: " hostname
|
|
||||||
hostname=${hostname:-nixos}
|
|
||||||
|
|
||||||
if [ "$hostname" = "default" ]; then
|
|
||||||
print_error "Cannot use 'default' as hostname. Choose something else."
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ ! "$hostname" =~ ^[a-zA-Z0-9]([a-zA-Z0-9-]*[a-zA-Z0-9])?$ ]]; then
|
|
||||||
print_error "Invalid hostname. Use only letters, numbers, and hyphens."
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
|
|
||||||
break
|
|
||||||
done
|
|
||||||
|
|
||||||
print_success "Hostname: $hostname"
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
# Get username
|
|
||||||
print_header "User Configuration"
|
|
||||||
current_user=$(echo $USER)
|
|
||||||
read -p "Enter username [$current_user]: " username
|
|
||||||
username=${username:-$current_user}
|
|
||||||
print_success "Username: $username"
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
# Get timezone
|
|
||||||
print_header "Timezone Configuration"
|
|
||||||
echo -e "${BLUE}Common timezones:${NC}"
|
|
||||||
echo -e " America/New_York (Eastern)"
|
|
||||||
echo -e " America/Chicago (Central)"
|
|
||||||
echo -e " America/Denver (Mountain)"
|
|
||||||
echo -e " America/Los_Angeles (Pacific)"
|
|
||||||
echo -e " Europe/London"
|
|
||||||
echo -e " Europe/Berlin"
|
|
||||||
echo -e " Asia/Tokyo"
|
|
||||||
echo -e " Australia/Sydney"
|
|
||||||
echo ""
|
|
||||||
echo -e "${YELLOW}Tip: Find your timezone at: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones${NC}"
|
|
||||||
echo ""
|
|
||||||
read -p "Enter timezone [Europe/Berlin]: " timezone
|
|
||||||
timezone=${timezone:-Europe/Berlin}
|
|
||||||
print_success "Timezone: $timezone"
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
# Get keyboard layout
|
|
||||||
print_header "Keyboard Configuration"
|
|
||||||
echo -e "${BLUE}Common keyboard layouts:${NC}"
|
|
||||||
echo -e " us (US English)"
|
|
||||||
echo -e " uk (UK English)"
|
|
||||||
echo -e " de (German)"
|
|
||||||
echo -e " fr (French)"
|
|
||||||
echo -e " es (Spanish)"
|
|
||||||
echo -e " it (Italian)"
|
|
||||||
echo -e " jp (Japanese)"
|
|
||||||
echo -e " ru (Russian)"
|
|
||||||
echo ""
|
|
||||||
read -p "Enter keyboard layout [de]: " keyboard
|
|
||||||
keyboard=${keyboard:-de}
|
|
||||||
print_success "Keyboard layout: $keyboard"
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
# Detect GPU
|
|
||||||
print_header "Hardware Detection"
|
|
||||||
DETECTED_PROFILE=""
|
|
||||||
|
|
||||||
has_nvidia=false
|
|
||||||
has_intel=false
|
|
||||||
has_amd=false
|
|
||||||
has_vm=false
|
|
||||||
|
|
||||||
if lspci | grep -qi 'vga\|3d'; then
|
|
||||||
while read -r line; do
|
|
||||||
if echo "$line" | grep -qi 'nvidia'; then
|
|
||||||
has_nvidia=true
|
|
||||||
elif echo "$line" | grep -qi 'amd'; then
|
|
||||||
has_amd=true
|
|
||||||
elif echo "$line" | grep -qi 'intel'; then
|
|
||||||
has_intel=true
|
|
||||||
elif echo "$line" | grep -qi 'virtio\|vmware'; then
|
|
||||||
has_vm=true
|
|
||||||
fi
|
|
||||||
done < <(lspci | grep -i 'vga\|3d')
|
|
||||||
|
|
||||||
if $has_vm; then
|
|
||||||
DETECTED_PROFILE="vm"
|
|
||||||
elif $has_nvidia && $has_intel; then
|
|
||||||
DETECTED_PROFILE="nvidia-laptop"
|
|
||||||
elif $has_nvidia; then
|
|
||||||
DETECTED_PROFILE="nvidia"
|
|
||||||
elif $has_amd; then
|
|
||||||
DETECTED_PROFILE="amd"
|
|
||||||
elif $has_intel; then
|
|
||||||
DETECTED_PROFILE="intel"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "$DETECTED_PROFILE" ]; then
|
|
||||||
echo -e "${YELLOW}Could not detect GPU automatically${NC}"
|
|
||||||
echo "Available profiles: nvidia, nvidia-laptop, amd, intel, vm"
|
|
||||||
read -p "Enter GPU profile [amd]: " profile
|
|
||||||
profile=${profile:-amd}
|
|
||||||
else
|
|
||||||
echo -e "Detected GPU: ${GREEN}$DETECTED_PROFILE${NC}"
|
|
||||||
read -p "Is this correct? [Y/n]: " confirm
|
|
||||||
if [[ $confirm =~ ^[Nn]$ ]]; then
|
|
||||||
echo "Available profiles: nvidia, nvidia-laptop, amd, intel, vm"
|
|
||||||
read -p "Enter GPU profile: " profile
|
|
||||||
else
|
|
||||||
profile=$DETECTED_PROFILE
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
print_success "GPU Profile: $profile"
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
# Configuration summary
|
|
||||||
print_header "Configuration Summary"
|
|
||||||
echo -e " Hostname: ${GREEN}$hostname${NC}"
|
|
||||||
echo -e " Username: ${GREEN}$username${NC}"
|
|
||||||
echo -e " Timezone: ${GREEN}$timezone${NC}"
|
|
||||||
echo -e " Keyboard: ${GREEN}$keyboard${NC}"
|
|
||||||
echo -e " GPU Profile: ${GREEN}$profile${NC}"
|
|
||||||
echo ""
|
|
||||||
# echo -e "${BLUE}Default Settings (you can change these later):${NC}"
|
|
||||||
# echo -e " Browser: firefox"
|
|
||||||
# echo -e " Terminal: kitty"
|
|
||||||
# echo -e " Shell: zsh"
|
|
||||||
# echo -e " Bar: noctalia"
|
|
||||||
# echo -e " Window Mgrs: Both Hyprland and Niri (choose at login)"
|
|
||||||
# echo ""
|
|
||||||
|
|
||||||
read -p "Continue with installation? [Y/n]: " proceed
|
|
||||||
if [[ $proceed =~ ^[Nn]$ ]]; then
|
|
||||||
echo "Installation cancelled"
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Generate hardware config
|
|
||||||
print_header "Generating Hardware Configuration"
|
|
||||||
sudo nixos-generate-config --show-hardware-config > /tmp/hardware.nix
|
|
||||||
print_success "Hardware configuration generated"
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
# Create host directory
|
|
||||||
print_header "Creating Host Configuration"
|
|
||||||
mkdir -p "hosts/$hostname"
|
|
||||||
|
|
||||||
# Copy default template
|
|
||||||
cp hosts/default/*.nix "hosts/$hostname/" 2>/dev/null || true
|
|
||||||
|
|
||||||
# Copy hardware config
|
|
||||||
mv /tmp/hardware.nix "hosts/$hostname/hardware.nix"
|
|
||||||
|
|
||||||
# Create variables.nix
|
|
||||||
cat > "hosts/$hostname/variables.nix" << EOF
|
|
||||||
{
|
|
||||||
# Git Configuration
|
|
||||||
gitUsername = "$username";
|
|
||||||
gitEmail = "$username@$hostname";
|
|
||||||
|
|
||||||
# System Configuration
|
|
||||||
timeZone = "$timezone";
|
|
||||||
|
|
||||||
# # Monitor Settings (update after installation for your displays)
|
|
||||||
# extraMonitorSettings = ''
|
|
||||||
# monitor=,preferred,auto,1
|
|
||||||
# '';
|
|
||||||
|
|
||||||
# # Waybar Settings
|
|
||||||
# clock24h = false;
|
|
||||||
|
|
||||||
# Default Applications
|
|
||||||
browser = "firefox";
|
|
||||||
terminal = "kitty";
|
|
||||||
keyboardLayout = "$keyboard";
|
|
||||||
consoleKeyMap = "$keyboard";
|
|
||||||
|
|
||||||
# # For Nvidia Prime support (update if using nvidia-laptop profile)
|
|
||||||
# # Run 'lspci | grep VGA' to find your actual GPU IDs
|
|
||||||
# intelID = "PCI:0:2:0";
|
|
||||||
# nvidiaID = "PCI:1:0:0";
|
|
||||||
|
|
||||||
# # Core Features
|
|
||||||
# enableNFS = false;
|
|
||||||
# printEnable = false;
|
|
||||||
# thunarEnable = true;
|
|
||||||
# stylixEnable = true;
|
|
||||||
|
|
||||||
# # Optional Features (disabled for faster initial install)
|
|
||||||
# # You can enable these later by setting to true and rebuilding
|
|
||||||
# gamingSupportEnable = false; # Gaming controllers, gamescope, protonup-qt
|
|
||||||
# flutterdevEnable = false; # Flutter development environment
|
|
||||||
# syncthingEnable = false; # Syncthing file synchronization
|
|
||||||
# enableCommunicationApps = false; # Discord, Teams, Zoom, Telegram
|
|
||||||
# enableExtraBrowsers = false; # Vivaldi, Brave, Firefox, Chromium, Helium
|
|
||||||
# enableProductivityApps = false; # Obsidian, GNOME Boxes, QuickEmu
|
|
||||||
# aiCodeEditorsEnable = false; # Claude-code, gemini-cli, cursor
|
|
||||||
|
|
||||||
# # Desktop Environment
|
|
||||||
# enableHyprlock = false; # Set to false if using DMS/Noctalia lock screens
|
|
||||||
|
|
||||||
# # Bar/Shell Choice
|
|
||||||
# barChoice = "noctalia"; # Options: "dms" or "noctalia"
|
|
||||||
# # NOTE: If you change barChoice to "dms", you must run 'dms-install' after rebuilding
|
|
||||||
|
|
||||||
# Shell Choice
|
|
||||||
defaultShell = "zsh"; # Options: "fish" or "zsh"
|
|
||||||
|
|
||||||
# Theming
|
|
||||||
stylixImage = ../../other/wallpaper2.png;
|
|
||||||
# #waybarChoice = ../../modules/home/waybar/waybar-ddubs.nix; # Waybar temporarily disabled
|
|
||||||
# animChoice = ../../modules/home/hyprland/animations-end4.nix;
|
|
||||||
|
|
||||||
# # Startup Applications
|
|
||||||
# startupApps = [];
|
|
||||||
}
|
|
||||||
EOF
|
|
||||||
|
|
||||||
print_success "Host configuration created"
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
# # Create Hyprland host-specific configuration files
|
|
||||||
# print_header "Creating Window Manager Host Configurations"
|
|
||||||
# mkdir -p "modules/home/hyprland/hosts/$hostname"
|
|
||||||
#
|
|
||||||
# # Create binds.nix for Hyprland
|
|
||||||
# cat > "modules/home/hyprland/hosts/$hostname/binds.nix" << 'EOF'
|
|
||||||
# {host, ...}: let
|
|
||||||
# inherit
|
|
||||||
# (import ../../../../hosts/${host}/variables.nix)
|
|
||||||
# browser
|
|
||||||
# terminal
|
|
||||||
# ;
|
|
||||||
# in {
|
|
||||||
# # Host-specific binds for $HOSTNAME
|
|
||||||
# # These will be merged with the default binds
|
|
||||||
# bind = [
|
|
||||||
# # Add host-specific keybinds here
|
|
||||||
# ];
|
|
||||||
#
|
|
||||||
# bindm = [
|
|
||||||
# # Add host-specific mouse binds here
|
|
||||||
# ];
|
|
||||||
# }
|
|
||||||
# EOF
|
|
||||||
#
|
|
||||||
# # Replace $HOSTNAME placeholder with actual hostname
|
|
||||||
# sed -i "s/\$HOSTNAME/$hostname/g" "modules/home/hyprland/hosts/$hostname/binds.nix"
|
|
||||||
#
|
|
||||||
# # Create windowrules.nix for Hyprland
|
|
||||||
# cat > "modules/home/hyprland/hosts/$hostname/windowrules.nix" << 'EOF'
|
|
||||||
# {host, ...}: let
|
|
||||||
# inherit
|
|
||||||
# (import ../../../../hosts/${host}/variables.nix)
|
|
||||||
# extraMonitorSettings
|
|
||||||
# ;
|
|
||||||
# in {
|
|
||||||
# # Host-specific window rules for $HOSTNAME
|
|
||||||
# # These will be merged with the default window rules
|
|
||||||
# windowrule = [
|
|
||||||
# # Add host-specific window rules here
|
|
||||||
# ];
|
|
||||||
# }
|
|
||||||
# EOF
|
|
||||||
#
|
|
||||||
# # Replace $HOSTNAME placeholder with actual hostname
|
|
||||||
# sed -i "s/\$HOSTNAME/$hostname/g" "modules/home/hyprland/hosts/$hostname/windowrules.nix"
|
|
||||||
#
|
|
||||||
# print_success "Hyprland configurations created"
|
|
||||||
|
|
||||||
# # Create Niri host-specific configuration files
|
|
||||||
# mkdir -p "modules/home/niri/hosts/$hostname"
|
|
||||||
#
|
|
||||||
# # Create keybinds.nix for Niri
|
|
||||||
# cat > "modules/home/niri/hosts/$hostname/keybinds.nix" << 'EOF'
|
|
||||||
# { host, ... }:
|
|
||||||
# ''
|
|
||||||
# // Host-specific keybinds for $HOSTNAME
|
|
||||||
# // Add your custom keybinds here
|
|
||||||
#
|
|
||||||
# // Example:
|
|
||||||
# // binds {
|
|
||||||
# // Mod+Shift+B { spawn "zen"; }
|
|
||||||
# // }
|
|
||||||
# ''
|
|
||||||
# EOF
|
|
||||||
#
|
|
||||||
# sed -i "s/\$HOSTNAME/$hostname/g" "modules/home/niri/hosts/$hostname/keybinds.nix"
|
|
||||||
#
|
|
||||||
# # Create outputs.nix for Niri
|
|
||||||
# cat > "modules/home/niri/hosts/$hostname/outputs.nix" << 'EOF'
|
|
||||||
# { host, ... }:
|
|
||||||
# ''
|
|
||||||
# // Host-specific output configuration for $HOSTNAME
|
|
||||||
# // Configure your monitors here
|
|
||||||
#
|
|
||||||
# output "eDP-1" {
|
|
||||||
# mode "1920x1080@60.000"
|
|
||||||
# scale 1.0
|
|
||||||
# position x=0 y=0
|
|
||||||
# }
|
|
||||||
#
|
|
||||||
# // Add more outputs as needed
|
|
||||||
# // output "HDMI-A-1" {
|
|
||||||
# // mode "2560x1440@144.000"
|
|
||||||
# // scale 1.0
|
|
||||||
# // position x=1920 y=0
|
|
||||||
# // }
|
|
||||||
# ''
|
|
||||||
# EOF
|
|
||||||
#
|
|
||||||
# sed -i "s/\$HOSTNAME/$hostname/g" "modules/home/niri/hosts/$hostname/outputs.nix"
|
|
||||||
#
|
|
||||||
# # Create windowrules.nix for Niri
|
|
||||||
# cat > "modules/home/niri/hosts/$hostname/windowrules.nix" << 'EOF'
|
|
||||||
# { host, ... }:
|
|
||||||
# ''
|
|
||||||
# // Host-specific window rules for $HOSTNAME
|
|
||||||
# // Add your custom window rules here
|
|
||||||
#
|
|
||||||
# // Example:
|
|
||||||
# // window-rule {
|
|
||||||
# // match app-id="^firefox$"
|
|
||||||
# // default-column-width { proportion 0.5; }
|
|
||||||
# // }
|
|
||||||
# ''
|
|
||||||
# EOF
|
|
||||||
#
|
|
||||||
# sed -i "s/\$HOSTNAME/$hostname/g" "modules/home/niri/hosts/$hostname/windowrules.nix"
|
|
||||||
#
|
|
||||||
# print_success "Niri configurations created"
|
|
||||||
# echo ""
|
|
||||||
|
|
||||||
# # Add new host files to git so flake can see them
|
|
||||||
# git add hosts/"$hostname"/ modules/home/hyprland/hosts/"$hostname"/ modules/home/niri/hosts/"$hostname"/ 2>/dev/null || true
|
|
||||||
git add hosts/"$hostname"/ 2>/dev/null || true
|
|
||||||
|
|
||||||
# Update flake.nix
|
|
||||||
print_header "Updating Flake Configuration"
|
|
||||||
|
|
||||||
if grep -q "\"$hostname\"" flake.nix; then
|
|
||||||
print_info "Host already exists in flake.nix"
|
|
||||||
else
|
|
||||||
# Add host to flake.nix right after the default host
|
|
||||||
# Use awk to insert at the right location (after default host closing brace, before nixosConfigurations closing brace)
|
|
||||||
awk -v hostname="$hostname" -v profile="$profile" -v username="$username" '
|
|
||||||
/username = "user";/ { in_default = 1 }
|
|
||||||
in_default && /^ };$/ {
|
|
||||||
print
|
|
||||||
print ""
|
|
||||||
print " " hostname " = mkHost {"
|
|
||||||
print " hostname = \"" hostname "\";"
|
|
||||||
print " profile = \"" profile "\";"
|
|
||||||
print " username = \"" username "\";"
|
|
||||||
print " };"
|
|
||||||
in_default = 0
|
|
||||||
next
|
|
||||||
}
|
|
||||||
{ print }
|
|
||||||
' flake.nix > flake.nix.tmp && mv flake.nix.tmp flake.nix
|
|
||||||
|
|
||||||
print_success "Added $hostname to flake.nix"
|
|
||||||
|
|
||||||
# Add updated flake.nix to git
|
|
||||||
git add flake.nix 2>/dev/null || true
|
|
||||||
fi
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
# Validate flake
|
|
||||||
print_header "Validating Configuration"
|
|
||||||
export NIX_CONFIG="experimental-features = nix-command flakes"
|
|
||||||
if nix flake metadata --no-write-lock-file . >/dev/null 2>&1; then
|
|
||||||
print_success "Flake syntax is valid"
|
|
||||||
else
|
|
||||||
print_error "Flake validation failed - please check configuration"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
# Build configuration
|
|
||||||
print_header "Building Black Don OS"
|
|
||||||
echo -e "${YELLOW}This will take 10-20 minutes depending on your hardware...${NC}"
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
read -p "Ready to build? [Y/n]: " build_confirm
|
|
||||||
if [[ $build_confirm =~ ^[Nn]$ ]]; then
|
|
||||||
echo ""
|
|
||||||
print_info "You can build manually later with:"
|
|
||||||
echo -e " ${GREEN}sudo nixos-rebuild switch --flake ~/black-don-os#$hostname${NC}"
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
export NIX_CONFIG="experimental-features = nix-command flakes"
|
|
||||||
|
|
||||||
if sudo nixos-rebuild switch --flake .#"$hostname"; then
|
|
||||||
echo ""
|
|
||||||
print_header "Installation Successful!"
|
|
||||||
echo ""
|
|
||||||
print_success "Black Don OS has been installed!"
|
|
||||||
echo ""
|
|
||||||
# echo -e "${BLUE}What's next:${NC}"
|
|
||||||
# echo -e " 1. Your configuration is in: ${GREEN}~/black-don-os/hosts/$hostname/${NC}"
|
|
||||||
# echo -e " 2. Both Hyprland and Niri are available - select at login screen"
|
|
||||||
# echo -e " 3. Customize: ${GREEN}~/black-don-os/hosts/$hostname/variables.nix${NC}"
|
|
||||||
# echo -e " 4. Rebuild: ${GREEN}sudo nixos-rebuild switch --flake ~/black-don-os#$hostname${NC}"
|
|
||||||
# echo ""
|
|
||||||
# echo -e "${YELLOW}Tip: Update your monitor settings in variables.nix for optimal display${NC}"
|
|
||||||
# echo ""
|
|
||||||
echo -e "${GREEN}╔═══════════════════════════════════════════════════════════════╗${NC}"
|
|
||||||
echo -e "${GREEN}║${NC} ${YELLOW}IMPORTANT: A system restart is required to complete setup${NC} ${GREEN}║${NC}"
|
|
||||||
echo -e "${GREEN}╚═══════════════════════════════════════════════════════════════╝${NC}"
|
|
||||||
echo ""
|
|
||||||
read -p "Would you like to restart now? [Y/n]: " restart_confirm
|
|
||||||
if [[ ! $restart_confirm =~ ^[Nn]$ ]]; then
|
|
||||||
echo ""
|
|
||||||
print_info "Restarting system in 5 seconds... (Ctrl+C to cancel)"
|
|
||||||
sleep 5
|
|
||||||
sudo reboot
|
|
||||||
else
|
|
||||||
echo ""
|
|
||||||
print_info "Please restart your system when ready to complete the installation"
|
|
||||||
echo -e " Run: ${GREEN}sudo reboot${NC}"
|
|
||||||
fi
|
|
||||||
echo ""
|
|
||||||
else
|
|
||||||
echo ""
|
|
||||||
print_error "Build failed"
|
|
||||||
echo ""
|
|
||||||
echo -e "${YELLOW}To retry manually:${NC}"
|
|
||||||
echo -e " ${GREEN}cd ~/black-don-os${NC}"
|
|
||||||
echo -e " ${GREEN}sudo nixos-rebuild switch --flake .#$hostname${NC}"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
Reference in New Issue
Block a user