On another Debian (x86 or arm64, doesn't matter much).
apt install distrobuilder qemu-system-common
Create a configuration file (debian.yml for example) for your LXC image :
image:
description: |-
Nearly stock Debian Bookworm image
On another Debian (x86 or arm64, doesn't matter much).
apt install distrobuilder qemu-system-common
Create a configuration file (debian.yml for example) for your LXC image :
image:
description: |-
Nearly stock Debian Bookworm image
#!/bin/bash | |
# Setting Up OpenWRT on a Virtual Machine with Proxmox | |
# Based on: https://community.bigbeartechworld.com/t/setting-up-openwrt-on-a-virtual-machine-with-proxmox/257 | |
# Set your wished version: | |
export VER="23.05" | |
export ARCH="amd64" | |
export INDEX_URL="https://images.linuxcontainers.org/images/openwrt/$VER/$ARCH/default" | |
#export BUILDDATE=$(date -d "yesterday" '+%Y%m%d') |
Here's how to use Home Manager without home-manager
.
@proofconstruction is my witness.
First of all we have to make sure that the version of Home Manager matches the Nixpkgs release we want to use for our user environment configuration. Otherwise we will almost certainly get into trouble with mismatching interfaces.
We start out with a function that takes Nixpkgs as pkgs
and fetch the appropriate Home Manager release.
We get the given Nixpkgs version string from pkgs.lib.version
and split it into the .
format with lib.versions.majorMinor
.
Installing Nautilus directly from Nixpkgs in Non-NixOS systems have no support for mounting sftps and other features that needs gvfs.
The solution for this is to install gnome3.gvfs
in your packages list and then setup the env variable like this:
home.packages = with pkgs; [
gnome3.gvfs
gnome3.nautilus
];
{ localSystem ? builtins.currentSystem | |
, crossSystem ? { config = "x86_64-unknown-linux-musl"; isStatic = true; useLLVM = true; } | |
}: | |
let | |
# Fetch the nixpkgs-cross-overlay sources. | |
src = builtins.fetchTarball "https://github.com/alekseysidorov/nixpkgs-cross-overlay/tarball/main"; | |
# Use the nixpkgs revision provided by the overlay. | |
# This is the best way, as they are the most proven and compatible. | |
nixpkgs = "${src}/utils/nixpkgs.nix"; | |
# Make cross system packages. |
# To set this up, first get tailscale working in an isolated linux shell: | |
# 1. sudo systemctl stop tailscaled.service | |
# 2. tailscaled -port 9993 -state tailscale-luks-setup.state -tun userspace-networking -socket ./tailscaled.sock | |
# 3. tailscale -socket ./tailscaled.sock up -hostname HOSTNAME-luks | |
# 4. tailscale -socket ./tailscaled.sock down | |
# 5. ctrl-c out of tailscaled | |
# 6 sudo systemctl start tailscaled.service | |
# | |
# Then add the .state file to your machine secrets and pass its path as tailscaleStatePath. |
# Do not read configuration files. When given in the global configuration file /etc/youtube-dl.conf: | |
# Do not read the user configuration in ~/.config/youtube-dl/config (%APPDATA%/youtube-dl/config.txt on Windows) | |
# --ignore-config | |
#=========================================General Options============================================== | |
# Continue on download errors, for example to skip unavailable videos in a playlist | |
--ignore-errors |