17b0cdfbac
- Introduced `08-structure.md` detailing project structure, main files, and versioning. - Created `README.md` for documentation overview and quick start guide. - Added user-specific configurations for Alacritty, Vim, Micro, Git, Zsh, Tmux, and tools. - Implemented system modules for desktop environment (KDE Plasma), audio (PipeWire), networking, and services (OpenSSH, GnuPG). - Configured Nix settings with flakes support and garbage collection. - Established user management for `ada` with necessary groups and shell settings. - Enabled VirtualBox guest additions for improved VM experience.
11 lines
239 B
Nix
11 lines
239 B
Nix
{ ... }:
|
|
|
|
{
|
|
# VirtualBox Guest additions
|
|
virtualisation.virtualbox.guest = {
|
|
enable = true;
|
|
dragAndDrop = true; # Перетаскивание файлов
|
|
clipboard = true; # Общий буфер обмена
|
|
};
|
|
}
|