Rebuild files to add wayland as separate file in system/core

This commit is contained in:
2026-03-07 15:53:17 +01:00
parent d11528d1e2
commit 6a70bc93e9
7 changed files with 606 additions and 549 deletions
+113 -96
View File
@@ -525,11 +525,12 @@ The ./generated/top.nix file acts as an anchor or entry point for the entire cha
#+END_SRC
** =generated/hyprland/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/hyprland/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
imports = [
./hyprland.nix
./animations_effects/top.nix
./decorations/top.nix
./keyboard_binds/top.nix
@@ -539,77 +540,39 @@ This is top file of this level which contains the bare necessities for this subj
./task_window_workspace_switcher/top.nix
./window_rules/top.nix
];
}
#+END_SRC
** =generated/hyprland/hyprland.nix=
The ./generated/top.nix file acts as an anchor or entry point for the entire chain of imports in the pyramid structure.
#+BEGIN_SRC nix :tangle generated/hyprland/hyprland.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
# Nix settings to use Hyprland's cache for packages
# This allows Nix to download pre-built packages from the Hyprland cache,
# which can speed up the installation process and ensure compatibility.
nix.settings = {
substituters = [ "https://hyprland.cachix.org" ];
trusted-public-keys = [ "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" ];
};
# Enable essential services for a Wayland session
services.dbus.enable = true; # D-Bus is required for inter-process communication
services.pipewire = {
enable = true;
alsa.enable = true; # Basic audio support using ALSA
pulse.enable = true; # PulseAudio support for better audio management
wireplumber.enable = true; # Audio device management and routing
};
# XDG Desktop Portal settings for better application integration
# The XDG Desktop Portal provides a way for applications to interact with the desktop environment.
xdg.portal = {
enable = true;
config.common.default = [ "hyprland" "gtk" ]; # Use Hyprland and GTK as default portal implementations
};
# Environment variables for a Wayland session with Hyprland
# These variables help applications understand the desktop environment and session type.
environment.sessionVariables = {
XDG_SESSION_TYPE = "wayland"; # Use Wayland instead of X11 for the session
XDG_CURRENT_DESKTOP = "Hyprland"; # Define the current desktop environment as Hyprland
XCURSOR_SIZE = "24"; # Set the size of the mouse cursor to 24 pixels
};
# Install Hyprland and enable it as the window manager
# Here, we're only installing the Hyprland package itself for a minimal setup.
environment.systemPackages = with pkgs; [ hyprland ];
# Configure Hyprland as the window manager
# This section enables Hyprland as the window manager and sets basic configurations.
programs.hyprland = {
enable = true; # Start Hyprland as the window manager
xwayland.enable = true; # Enable XWayland to run X11 applications within the Wayland session
enable = true;
xwayland.enable = true;
};
# Home-manager configuration for user-specific settings
# Home-manager is used to manage user-specific configurations and packages.
home-manager = {
# Enable Hyprland as the Wayland window manager for the user session
# Hyprland-specific Home Manager configurations
home-manager.users.${user.username} = {
wayland.windowManager.hyprland = {
enable = true; # Enable Hyprland as the window manager for the user
settings = {
# Minimal configuration, customize later as needed
# This is where you would add custom keybinds, workspace settings, etc.
};
};
# XDG portal settings for user sessions
# These settings ensure that applications can interact properly with the Hyprland session.
xdg.portal = {
enable = true;
extraPortals = with pkgs; [ xdg-desktop-portal-hyprland ]; # Hyprland-specific portal implementation
config.hyprland = {
"org.freedesktop.impl.portal.Screencast" = [ "hyprland" ]; # Enable screencasting support
};
settings = { };
};
};
}
#+END_SRC
** =generated/mangowc/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/mangowc/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -628,12 +591,13 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
imports = [
./applications/top.nix
./core/top.nix
./development/top.nix
./system_management/top.nix
];
@@ -642,7 +606,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/applications/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/applications/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -658,8 +622,61 @@ This is top file of this level which contains the bare necessities for this subj
}
#+END_SRC
** =generated/system/core/top.nix=
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/core/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
imports = [
./top.nix
./wayland.nix
];
# .. put any code here
}
#+END_SRC
** =generated/system/core/wayland.nix=
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/core/wayland.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, ... }:
{
# Enable essential services for a Wayland session
services.dbus.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
pulse.enable = true;
wireplumber.enable = true;
};
# XDG Desktop Portal settings for better application integration
xdg.portal = {
enable = true;
config.common.default = [ "hyprland" "gtk" ];
};
# Environment variables for a Wayland session
environment.sessionVariables = {
XDG_SESSION_TYPE = "wayland";
XDG_CURRENT_DESKTOP = "Hyprland";
XCURSOR_SIZE = "24";
};
# Home Manager Wayland configurations
home-manager.users.${user.username} = {
xdg.portal = {
enable = true;
extraPortals = with pkgs; [ xdg-desktop-portal-hyprland ];
config.hyprland = {
"org.freedesktop.impl.portal.Screencast" = [ "hyprland" ];
};
};
};
}
#+END_SRC
** =generated/system/development/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/development/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -675,7 +692,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/system_management/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/system_management/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -699,7 +716,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/hyprland/animations_effects/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/hyprland/animations_effects/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -711,7 +728,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/hyprland/decorations/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/hyprland/decorations/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -723,7 +740,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/hyprland/keyboard_binds/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/hyprland/keyboard_binds/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
let
@@ -741,7 +758,7 @@ in
#+END_SRC
** =generated/hyprland/notifications/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/hyprland/notifications/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -753,7 +770,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/hyprland/statusbar_tray/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/hyprland/statusbar_tray/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -765,7 +782,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/hyprland/task_launcher/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/hyprland/task_launcher/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -777,7 +794,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/hyprland/task_window_workspace_switcher/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/hyprland/task_window_workspace_switcher/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -789,7 +806,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/hyprland/window_rules/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/hyprland/window_rules/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -801,7 +818,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/mangowc/animations_effects/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/mangowc/animations_effects/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -813,7 +830,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/mangowc/decorations/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/mangowc/decorations/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -825,7 +842,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/mangowc/keyboard_binds/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/mangowc/keyboard_binds/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -837,7 +854,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/mangowc/notifications/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/mangowc/notifications/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -849,7 +866,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/mangowc/statusbar_tray/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/mangowc/statusbar_tray/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -861,7 +878,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/mangowc/task_launcher/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/mangowc/task_launcher/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -873,7 +890,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/mangowc/task_window_workspace_switcher/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/mangowc/task_window_workspace_switcher/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -885,7 +902,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/mangowc/window_rules/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/mangowc/window_rules/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -897,7 +914,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/applications/accessibility/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/applications/accessibility/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -909,7 +926,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/applications/file_management/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/applications/file_management/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -921,7 +938,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/applications/gaming/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/applications/gaming/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -933,7 +950,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/applications/media_playback_editing/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/applications/media_playback_editing/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -945,7 +962,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/applications/office_productivity/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/applications/office_productivity/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -957,7 +974,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/applications/terminal_shell/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/applications/terminal_shell/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -969,7 +986,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/development/databases/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/development/databases/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -981,7 +998,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/development/devops_ci_cd/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/development/devops_ci_cd/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -993,7 +1010,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/development/programming_languages/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/development/programming_languages/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -1005,7 +1022,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/development/virtualization/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/development/virtualization/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -1017,7 +1034,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/development/web_development/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/development/web_development/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -1029,7 +1046,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/system_management/audio/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/system_management/audio/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -1041,7 +1058,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/system_management/backups/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/system_management/backups/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -1053,7 +1070,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/system_management/bluetooth/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/system_management/bluetooth/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -1065,7 +1082,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/system_management/disk_management/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/system_management/disk_management/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -1077,7 +1094,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/system_management/hardware_sensors/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/system_management/hardware_sensors/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -1089,7 +1106,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/system_management/logging_monitoring/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/system_management/logging_monitoring/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -1101,7 +1118,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/system_management/login_manager/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/system_management/login_manager/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -1113,7 +1130,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/system_management/monitor_setup/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/system_management/monitor_setup/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -1125,7 +1142,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/system_management/networking/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/system_management/networking/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -1137,7 +1154,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/system_management/power_management/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/system_management/power_management/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -1149,7 +1166,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/system_management/printers_scanners/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/system_management/printers_scanners/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -1161,7 +1178,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/system_management/security/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/system_management/security/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{
@@ -1173,7 +1190,7 @@ This is top file of this level which contains the bare necessities for this subj
#+END_SRC
** =generated/system/system_management/system_updates/top.nix=
This is top file of this level which contains the bare necessities for this subject + an import statement for all the subfolder in this folder
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/system/system_management/system_updates/top.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, user, inputs, ... }:
{