[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...
];
}