diff --git a/README.md b/README.md index 7226d196..19f828a0 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ nix develop -c /etc/nixos/git/docs/setup.sh --- # Host Specific ## framework-server To Do List -* [ ] Fix Gotify notifications (Jellyfin) +* [x] Fix Gotify notifications (Jellyfin) * [ ] Add a /Storage btrfs subvolume for Docker * [ ] Need to set up a new PGP key for use with ProtonMail * [ ] Try this https://www.ntop.org/products/traffic-analysis/ntop/ diff --git a/nixos/default.nix b/nixos/default.nix index eaf9cd37..5168d1c3 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -56,6 +56,7 @@ nmap # network mapping / discovery software busybox # General linux commands, nslookup, dig, etc sshpass # ssh password helper + cbonsai # ncurses bonsai tree ]; # Select internationalisation properties. diff --git a/nixos/hosts/framework-server/default.nix b/nixos/hosts/framework-server/default.nix index 9537d051..9e67de51 100644 --- a/nixos/hosts/framework-server/default.nix +++ b/nixos/hosts/framework-server/default.nix @@ -17,6 +17,7 @@ environment.systemPackages = [ inputs.deploy-rs.packages.${platform}.deploy-rs + pkgs.distrobox ]; # steam , etc diff --git a/nixos/hosts/nixos-desktop/default.nix b/nixos/hosts/nixos-desktop/default.nix index 71257eed..0644621e 100644 --- a/nixos/hosts/nixos-desktop/default.nix +++ b/nixos/hosts/nixos-desktop/default.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, modulesPath, desktop, username, ... }: { +{ inputs, config, lib, pkgs, modulesPath, desktop, username, platform, ... }: { imports = [ ./disks.nix ../../common/modules/secureboot.nix @@ -7,6 +7,11 @@ # steam, nvidia-x11, etc nixpkgs.config.allowUnfree = true; + environment.systemPackages = [ + inputs.deploy-rs.packages.${platform}.deploy-rs + pkgs.distrobox + ]; + boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "thunderbolt" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" "acpi_call" ];