[TASK] Restructure

This commit is contained in:
Sebastian Fischer 2026-02-05 20:48:35 +01:00
parent 192cb6c777
commit e8505da399
3 changed files with 14 additions and 4 deletions

View File

@ -9,6 +9,7 @@
./hardware-configuration.nix ./hardware-configuration.nix
./common.nix ./common.nix
# ./vm.nix # ./vm.nix
./home.nix
]; ];
# This value determines the NixOS release from which the default # This value determines the NixOS release from which the default

9
config/home.nix Normal file
View File

@ -0,0 +1,9 @@
# In deiner home.nix
{ pkgs, ... }:
{
home.packages = with pkgs; [
rustdesk
# deine anderen Pakete...
];
}

View File

@ -102,9 +102,9 @@ echo "[Desktop Entry]\nName=Jameica\nExec=/opt/jameica/jameica.sh\nTerminal=fals
# skipped # skipped
if [false]; then if [false]; then
sudo apt install libminizip1 gdebi-core sudo apt install libminizip1 gdebi-core
wget https://download.teamviewer.com/download/linux/teamviewer_amd64.deb -P /tmp wget https://download.teamviewer.com/download/linux/teamviewer_amd64.deb -P /tmp
sudo apt install /tmp/teamviewer_amd64.deb sudo apt install /tmp/teamviewer_amd64.deb
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | sudo gpg --dearmor -o /usr/share/keyrings/microsoft.gpg wget -qO- https://packages.microsoft.com/keys/microsoft.asc | sudo gpg --dearmor -o /usr/share/keyrings/microsoft.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/microsoft.gpg] https://packages.microsoft.com/repos/code stable main" | sudo tee /etc/apt/sources.list.d/vscode.list echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/microsoft.gpg] https://packages.microsoft.com/repos/code stable main" | sudo tee /etc/apt/sources.list.d/vscode.list
@ -116,4 +116,4 @@ sudo apt install /tmp/teamviewer_amd64.deb
wget --directory-prefix=$HOME/Downloads/ https://github.com/joshuar/go-hass-agent/releases/download/v13.2.8/go-hass-agent_13.2.8_amd64.deb wget --directory-prefix=$HOME/Downloads/ https://github.com/joshuar/go-hass-agent/releases/download/v13.2.8/go-hass-agent_13.2.8_amd64.deb
sudo apt install dbus-x11 sudo apt install dbus-x11
sudo dpkg -i $HOME/Downloads/go-hass-agent_13.2.8_amd64.deb sudo dpkg -i $HOME/Downloads/go-hass-agent_13.2.8_amd64.deb
fi fi