mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-04-03 18:14:15 +00:00
~
This commit is contained in:
parent
1f4a53d646
commit
8accea9cc6
9 changed files with 231 additions and 1 deletions
nixos
home
hosts
pkgs
secrets
|
@ -60,6 +60,7 @@
|
|||
];
|
||||
"browser.startup.page" = 3;
|
||||
"datareporting.healthreport.uploadEnabled" = false;
|
||||
"extensions.webextensions.restrictedDomains" = "";
|
||||
"font.name.monospace.x-western" = "Fira Code";
|
||||
"layout.css.prefers-color-scheme.content-override" = 0;
|
||||
"svg.context-properties.content.enabled" = true;
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
gnumake # Tool to control the generation of non-source files from sources
|
||||
godot_4 # Free and Open Source 2D and 3D game engine
|
||||
gtk4 # Multi-platform toolkit for creating graphical user interfaces
|
||||
imhex # Hex Editor for Reverse Engineers, Programmers and people who value their retinas when working at 3 AM
|
||||
jdk23 # Open-source Java Development Kit
|
||||
just # Handy way to save and run project-specific commands
|
||||
meson # Open source, fast and friendly build system made in Python
|
||||
|
@ -28,6 +29,7 @@
|
|||
# games
|
||||
alvr # Stream VR games from your PC to your headset via Wi-Fi
|
||||
easyrpg-player # RPG Maker 2000/2003 and EasyRPG games interpreter
|
||||
gzdoom # Modder-friendly OpenGL and Vulkan source port based on the DOOM engine
|
||||
unstable.luanti # An open source voxel game engine (formerly Minetest)
|
||||
prismlauncher # Free, open source launcher for Minecraft
|
||||
(retroarch.override { # Multi-platform emulator frontend for libretro cores
|
||||
|
@ -128,6 +130,7 @@
|
|||
soteria # Polkit authentication agent written in GTK designed to be used with any desktop environment
|
||||
temurin-jre-bin-23 # Eclipse Temurin, prebuilt OpenJDK binary
|
||||
temurin-jre-bin-8 # Eclipse Temurin, prebuilt OpenJDK binary
|
||||
tilem # Emulator and debugger for Texas Instruments Z80-based graphing calculators
|
||||
vlc # Cross-platform media player and streaming server
|
||||
];
|
||||
|
||||
|
|
141
nixos/hosts/near/rpi5-config/configuration.nix
Normal file
141
nixos/hosts/near/rpi5-config/configuration.nix
Normal file
|
@ -0,0 +1,141 @@
|
|||
{ config, pkgs, lib, modulesPath, ... }:
|
||||
|
||||
{
|
||||
|
||||
## System
|
||||
|
||||
imports =
|
||||
[ ./hardware.nix
|
||||
"${modulesPath}/profiles/headless.nix"
|
||||
];
|
||||
|
||||
networking.hostName = "wilson";
|
||||
|
||||
system.stateVersion = "23.11";
|
||||
|
||||
# turn off screen 5min after boot
|
||||
boot.kernelParams = [ "consoleblank=300" ];
|
||||
|
||||
nix.settings.experimental-features = [ "nix-command" ];
|
||||
|
||||
|
||||
## Packages
|
||||
|
||||
nixpkgs.overlays = lib.singleton (self: super:
|
||||
{ # don't shadow procps, etc.
|
||||
busybox = lib.setPrio 20 super.busybox;
|
||||
});
|
||||
|
||||
|
||||
## Environment
|
||||
|
||||
i18n.defaultLocale = "en_GB.UTF-8";
|
||||
i18n.extraLocaleSettings.LC_TIME = "it_IT.UTF-8";
|
||||
|
||||
time.timeZone = "Europe/Rome";
|
||||
|
||||
environment.sessionVariables =
|
||||
{ PATH = [ "$HOME/bin" ];
|
||||
XDG_CONFIG_HOME = "$HOME/etc";
|
||||
XDG_DATA_HOME = "$HOME/var/lib";
|
||||
XDG_CACHE_HOME = "$HOME/var/cache";
|
||||
EDITOR = "vi";
|
||||
LESS = "-RSic -j.5";
|
||||
ABDUCO_CMD = "ash";
|
||||
ABDUCO_SOCKET_DIR = "$XDG_RUNTIME_DIR";
|
||||
SYSTEMD_COLORS = "16";
|
||||
PS1 = ''\e[32m\u\e[0m@\e[33m\H \e[36m\w\n\e[34mλ\e[0m '';
|
||||
};
|
||||
|
||||
environment.shellInit =
|
||||
''
|
||||
# create XDG directories
|
||||
mkdir -p $XDG_CONFIG_HOME $XDG_DATA_HOME $XDG_CACHE_HOME $HOME/bin
|
||||
|
||||
# some aliases
|
||||
alias l="ls -lh"
|
||||
alias e="$EDITOR"
|
||||
alias ip="ip -c"
|
||||
'';
|
||||
|
||||
environment.systemPackages = with pkgs; [ abduco busybox ];
|
||||
|
||||
|
||||
## Users
|
||||
|
||||
users.users.rnhmjoj =
|
||||
{ isNormalUser = true;
|
||||
shell = "${pkgs.busybox}/bin/ash";
|
||||
extraGroups = [ "wheel" ];
|
||||
openssh.authorizedKeys.keys = [ key ];
|
||||
};
|
||||
|
||||
|
||||
## Security
|
||||
|
||||
security.sudo.wheelNeedsPassword = false;
|
||||
|
||||
# never interrupt host key generation
|
||||
systemd.services.openssh.serviceConfig.TimeoutStartSec = "infinity";
|
||||
|
||||
services.openssh.enable = true;
|
||||
services.openssh.settings.PermitRootLogin = "no";
|
||||
|
||||
nix.settings.trusted-users = [ "rnhmjoj" "root" ];
|
||||
|
||||
|
||||
## Network
|
||||
|
||||
networking.usePredictableInterfaceNames = false;
|
||||
|
||||
# Bridges for wired to wireless
|
||||
networking.bridges.br0.interfaces = [ "eth0" ];
|
||||
|
||||
# change MAC address
|
||||
networking.interfaces.eth0.macAddress = "00:68:eb:26:b2:42";
|
||||
networking.interfaces.br0.macAddress = "00:68:eb:26:b2:43";
|
||||
|
||||
# Enable forwarding packets
|
||||
boot.kernel.sysctl = {
|
||||
"net.ipv6.conf.all.forwarding" = 1;
|
||||
"net.ipv4.conf.all.forwarding" = 1;
|
||||
};
|
||||
|
||||
# Create an access point
|
||||
services.hostapd.enable = true;
|
||||
services.hostapd.radios.wlan0 =
|
||||
{ band = "5g";
|
||||
channel = 0;
|
||||
countryCode = "PA";
|
||||
wifi4.capabilities =
|
||||
[ "HT40+" "SHORT-GI-20" "SHORT-GI-40" "MAX-AMSDU-3839" "DSSS_CCK-40" ];
|
||||
wifi5.capabilities = [ "MAX-MPDU-3895" "SHORT-GI-80" "SU-BEAMFORMEE" ];
|
||||
wifi5.operatingChannelWidth = "80";
|
||||
networks.wlan0 =
|
||||
{ ssid = "<ssid-here>";
|
||||
bssid = "f8:0d:ac:60:E0:f9";
|
||||
authentication.mode = "wpa2-sha1";
|
||||
authentication.wpaPassword = "<psk-here>";
|
||||
settings.bridge = "br0";
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
## Make the image small
|
||||
|
||||
# disable nscd
|
||||
services.nscd.enable = false;
|
||||
system.nssModules = lib.mkForce [];
|
||||
|
||||
# use chrony
|
||||
services.timesyncd.enable = false;
|
||||
services.chrony.enable = true;
|
||||
|
||||
# disable systemd stuff
|
||||
services.dbus.enable = lib.mkForce false;
|
||||
systemd.coredump.enable = false;
|
||||
systemd.services.mount-pstore.enable = false;
|
||||
systemd.services.systemd-udev-settle.enable = false;
|
||||
systemd.services.systemd-hostnamed.enable = false;
|
||||
|
||||
}
|
13
nixos/hosts/near/rpi5-config/default.nix
Normal file
13
nixos/hosts/near/rpi5-config/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
let
|
||||
# pinned Nixpkgs version
|
||||
nixpkgs = builtins.fetchTarball
|
||||
{ url = "https://github.com/NixOS/nixpkgs/archive/76612b17c0ce.tar.gz";
|
||||
sha256 = "03pmy2dv212mmxgcvwxinf3xy6m6zzr8ri71pda1lqggmll2na12";
|
||||
};
|
||||
|
||||
nixos = import (nixpkgs + "/nixos") { configuration = ./configuration.nix; };
|
||||
in
|
||||
{
|
||||
inherit (nixos.config.system.build) sdImage;
|
||||
inherit (nixos) system pkgs config;
|
||||
}
|
59
nixos/hosts/near/rpi5-config/hardware.nix
Normal file
59
nixos/hosts/near/rpi5-config/hardware.nix
Normal file
|
@ -0,0 +1,59 @@
|
|||
{ lib, config, pkgs, modulesPath, ... }:
|
||||
|
||||
{
|
||||
|
||||
## Hardware
|
||||
|
||||
# Cross compile for aarch64
|
||||
nixpkgs.crossSystem.config = "aarch64-unknown-linux-gnu";
|
||||
|
||||
# Use the raspberry Pi 5 kernel
|
||||
boot.kernelPackages = pkgs.linuxPackagesFor
|
||||
(pkgs.linux_rpi4.override
|
||||
{ rpiVersion = 5;
|
||||
argsOverride.defconfig = "bcm2712_defconfig";
|
||||
});
|
||||
|
||||
# Only add strictly necessary modules
|
||||
hardware.firmware = [ pkgs.raspberrypiWirelessFirmware ];
|
||||
boot.initrd.includeDefaultModules = false;
|
||||
boot.initrd.kernelModules = [ "ext4" "mmc_block" ];
|
||||
disabledModules =
|
||||
[ "${modulesPath}/profiles/all-hardware.nix"
|
||||
"${modulesPath}/profiles/base.nix"
|
||||
];
|
||||
|
||||
# Configure u-boot image
|
||||
boot.loader.grub.enable = false;
|
||||
boot.loader.generic-extlinux-compatible.enable = true;
|
||||
|
||||
imports = [ "${modulesPath}/installer/sd-card/sd-image.nix" ];
|
||||
sdImage.populateFirmwareCommands =
|
||||
let
|
||||
uboot = pkgs.buildUBoot
|
||||
{ defconfig = "rpi_arm64_config";
|
||||
extraMeta.platforms = [ "aarch64-linux" ];
|
||||
filesToInstall = [ "u-boot.bin" ];
|
||||
};
|
||||
|
||||
config = pkgs.writeText "config.txt"
|
||||
''
|
||||
avoid_warnings=1
|
||||
enable_uart=1
|
||||
kernel=u-boot.bin
|
||||
'';
|
||||
in
|
||||
''
|
||||
cp ${uboot}/u-boot.bin firmware/u-boot.bin
|
||||
cp ${pkgs.raspberrypifw}/share/raspberrypi/boot/{bootcode.bin,fixup*.dat,start*.elf} firmware/
|
||||
cp ${pkgs.raspberrypi-armstubs}/armstub8-gic.bin firmware/armstub8-gic.bin
|
||||
cp ${pkgs.raspberrypifw}/share/raspberrypi/boot/bcm2712-rpi-5-b.dtb firmware/
|
||||
cp ${config} firmware/config.txt
|
||||
'';
|
||||
sdImage.populateRootCommands =
|
||||
''
|
||||
mkdir -p ./files/boot
|
||||
${config.boot.loader.generic-extlinux-compatible.populateCmd} -c ${config.system.build.toplevel} -d ./files/boot
|
||||
'';
|
||||
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
# TODO
|
||||
with import <nixpkgs> {};
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vasm-psi-x-m68k";
|
||||
pname = "vasm-psi-x";
|
||||
version = "1.1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
|
|
10
nixos/pkgs/vlink/default.nix
Normal file
10
nixos/pkgs/vlink/default.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
#! TODO
|
||||
with import <nixpkgs> {};
|
||||
stdenv.mkDerivation {
|
||||
pname = "vlink";
|
||||
version = "0.18";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A portable linker for multiple file formats";
|
||||
};
|
||||
}
|
2
secrets/cemetech.gpg
Normal file
2
secrets/cemetech.gpg
Normal file
|
@ -0,0 +1,2 @@
|
|||
„^>©=€Ì¢
@ÛI'õѤC®ŠêKÎÿï<>•¾u÷|ó¾5#ÂJ<C382>`yY0”~ˆÜzYoýmÕO|§£#u½Èxg @±éu¸;+``åó²œ
|
||||
uûØ"ä7»xXˆÔU ‰ñvÝy:k½<6B>³[á+<2B>ÝiQæ^J<>÷•~Üþ7[§Y®õ’6{êÆ ü1û{ù¥Ê0²<30>GHZšõµÝ5üó²:‘åÒ ¤´Ù:“;¥
|
1
secrets/coursera.gpg
Normal file
1
secrets/coursera.gpg
Normal file
|
@ -0,0 +1 @@
|
|||
└^>╘=─л╒
@≤я■ТC'7╩Э┤uК?РЬ┼%уМ█Fzt=3╔СоUA╩z0H>g4┴штJЦU)gZЛoПЦ\≈с╞╕уq║╡А≥щЮН÷]D▀ш≥╬Т⌠ёМ⌠ъRтU иJLX)|0┼yт`4фUДЫ≈.кибjЁ▒'▀&ЭКдхдл]Б╡┬6W╣⌠п╒\▓ЫM@фHV]■mчЕ▄~≤И≈╙КKnмЖ<y▓ф╨0
|
Loading…
Add table
Reference in a new issue