Compare commits

..

13 Commits

Author SHA1 Message Date
a79f524b6c Merge branch 'main' of github.com:alexmickelson/infrastructure
All checks were successful
Apply Kuberentes Configs / update-repo (push) Successful in 1s
Apply Kuberentes Configs / update-infrastructure (push) Successful in 3s
Apply Kuberentes Configs / notify-on-failure (push) Has been skipped
ZFS Backup / update-infrastructure (push) Successful in 2m9s
ZFS Backup / notify-on-failure (push) Has been skipped
Libation / update-repo (push) Successful in 0s
Libation / sync-audiobooks (push) Successful in 4s
Libation / notify-on-failure (push) Has been skipped
Manage Jellyfin Playlists / run-python (push) Successful in 46s
Manage Jellyfin Playlists / update-repo (push) Successful in 0s
Manage Jellyfin Playlists / notify-on-failure (push) Has been skipped
2026-03-03 15:32:19 -07:00
2e9b40fba0 node 2026-03-03 15:32:18 -07:00
6eeaed33a4 Update tv-computer.nix 2026-03-02 18:00:50 -07:00
6e6c1dc530 Update tv-computer.nix 2026-03-02 17:56:44 -07:00
c9fc909727 merging 2026-03-02 16:57:15 -07:00
ffc69352fa tv-computer 2026-03-02 16:55:25 -07:00
660be9736b no fprint 2026-03-02 15:33:47 -07:00
5daa737dab Merge branch 'main' of github.com:alexmickelson/infrastructure 2026-02-28 15:02:58 -07:00
80b48ca458 fprintd 2026-02-28 15:02:57 -07:00
096cf1cc2d watchman 2026-02-26 11:16:07 -07:00
5d2f7b5ce0 inotify 2026-02-26 11:14:36 -07:00
4470db7960 updates 2026-02-24 19:16:44 -07:00
f7accecaae elixir at work 2026-02-23 16:04:30 -07:00
5 changed files with 53 additions and 22 deletions

View File

@@ -103,21 +103,20 @@
iperf iperf
mangohud mangohud
mlocate mlocate
kdePackages.kdeconnect-kde
wineWowPackages.stable # wineWowPackages.stable
wine # wine
(wine.override { wineBuild = "wine64"; }) # (wine.override { wineBuild = "wine64"; })
wine64 # wine64
wineWowPackages.staging # wineWowPackages.staging
winetricks # winetricks
wineWowPackages.waylandFull # wineWowPackages.waylandFull
mesa-gl-headers # mesa-gl-headers
mesa # mesa
driversi686Linux.mesa # driversi686Linux.mesa
mesa-demos # mesa-demos
android-tools
]; ];
services.tailscale.enable = true; services.tailscale.enable = true;
services.openssh.enable = true; services.openssh.enable = true;
@@ -160,6 +159,25 @@
}; };
}; };
# fingerprint
# services.fprintd = {
# enable = true;
# package = pkgs.fprintd.override {
# libfprint = pkgs.libfprint;
# };
# };
# services.gnome.gnome-keyring.enable = true;
# security.polkit.enable = true;
# security.pam.services.gdm.fprintAuth = true;
# security.pam.services.gdm.enableGnomeKeyring = true;
# security.pam.services.sudo.fprintAuth = true;
# services.udev.extraRules = ''
# ACTION=="add", SUBSYSTEM=="usb", ATTR{idVendor}=="04f3", ATTR{idProduct}=="0c3d", TEST=="power/control", ATTR{power/control}="on"
# '';
# This value determines the NixOS release from which the default # This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions # settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave # on your system were taken. Its perfectly fine and recommended to leave

View File

@@ -22,7 +22,12 @@
bitwarden-desktop bitwarden-desktop
jellyfin-tui jellyfin-tui
bluetui bluetui
nexusmods-app-unfree # bitwarden-desktop
lazydocker
elixir
elixir-ls
]; ];
programs.ghostty = { programs.ghostty = {

View File

@@ -41,7 +41,6 @@ in {
iperf iperf
#makemkv #makemkv
#elixir_1_18 #elixir_1_18
#inotify-tools
# gnome-themes-extra # gnome-themes-extra
uv uv
ghostty ghostty
@@ -66,7 +65,11 @@ in {
# vscode-fhs # vscode-fhs
# aider-chat-full # aider-chat-full
codex # codex
elixir
elixir-ls
inotify-tools
watchman
]; ];
fonts.fontconfig.enable = true; fonts.fontconfig.enable = true;
programs.firefox = { programs.firefox = {

View File

@@ -27,6 +27,7 @@
kubectl kubectl
kubernetes-helm kubernetes-helm
curl curl
nodejs_24
]; ];
settings = { settings = {
container = { container = {

View File

@@ -1,4 +1,3 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
@@ -13,10 +12,12 @@
# "hid_microsoft" # Xbox One Elite 2 controller driver preferred by Steam # "hid_microsoft" # Xbox One Elite 2 controller driver preferred by Steam
# "uinput" # "uinput"
# ]; # ];
boot.kernelPackages = pkgs.linuxPackages_6_6;
boot.kernelParams = [ boot.kernelPackages = pkgs.linuxPackages_6_1;
"amdgpu.discovery=1" #boot.kernelParams = [
]; # "amdgpu.discovery=1"
#];
hardware.enableRedistributableFirmware = true;
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
@@ -87,6 +88,9 @@
libcec libcec
flirc flirc
kdePackages.kdeconnect-kde
]; ];
services.openssh.enable = true; services.openssh.enable = true;
services.tailscale.enable = true; services.tailscale.enable = true;