Add distrobox and cbonsai

This commit is contained in:
iFargle 2023-12-27 12:41:12 +09:00
parent bd5e3c4cdb
commit 2ec0ac32a5
4 changed files with 9 additions and 2 deletions

View file

@ -24,7 +24,7 @@ nix develop -c /etc/nixos/git/docs/setup.sh
--- ---
# Host Specific # Host Specific
## framework-server To Do List ## framework-server To Do List
* [ ] Fix Gotify notifications (Jellyfin) * [x] Fix Gotify notifications (Jellyfin)
* [ ] Add a /Storage btrfs subvolume for Docker * [ ] Add a /Storage btrfs subvolume for Docker
* [ ] Need to set up a new PGP key for use with ProtonMail * [ ] Need to set up a new PGP key for use with ProtonMail
* [ ] Try this https://www.ntop.org/products/traffic-analysis/ntop/ * [ ] Try this https://www.ntop.org/products/traffic-analysis/ntop/

View file

@ -56,6 +56,7 @@
nmap # network mapping / discovery software nmap # network mapping / discovery software
busybox # General linux commands, nslookup, dig, etc busybox # General linux commands, nslookup, dig, etc
sshpass # ssh password helper sshpass # ssh password helper
cbonsai # ncurses bonsai tree
]; ];
# Select internationalisation properties. # Select internationalisation properties.

View file

@ -17,6 +17,7 @@
environment.systemPackages = [ environment.systemPackages = [
inputs.deploy-rs.packages.${platform}.deploy-rs inputs.deploy-rs.packages.${platform}.deploy-rs
pkgs.distrobox
]; ];
# steam , etc # steam , etc

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, modulesPath, desktop, username, ... }: { { inputs, config, lib, pkgs, modulesPath, desktop, username, platform, ... }: {
imports = [ imports = [
./disks.nix ./disks.nix
../../common/modules/secureboot.nix ../../common/modules/secureboot.nix
@ -7,6 +7,11 @@
# steam, nvidia-x11, etc # steam, nvidia-x11, etc
nixpkgs.config.allowUnfree = true; 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.availableKernelModules = [ "xhci_pci" "nvme" "thunderbolt" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" "acpi_call" ]; boot.kernelModules = [ "kvm-intel" "acpi_call" ];