Regenerated
This commit is contained in:
+385
-384
File diff suppressed because it is too large
Load Diff
+36
-35
@@ -322,8 +322,8 @@ in
|
|||||||
|
|
||||||
** =generated/hosts/traveldroid/boot.nix=
|
** =generated/hosts/traveldroid/boot.nix=
|
||||||
#+BEGIN_SRC nix :tangle generated/hosts/traveldroid/boot.nix :noweb yes :mkdirp yes :eval never
|
#+BEGIN_SRC nix :tangle generated/hosts/traveldroid/boot.nix :noweb yes :mkdirp yes :eval never
|
||||||
|
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
|
||||||
{ config, pkgs, lib, flakeRoot, ... }:
|
{ config, pkgs, lib, flakeRoot, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
boot.loader = {
|
boot.loader = {
|
||||||
systemd-boot.enable = true;
|
systemd-boot.enable = true;
|
||||||
@@ -331,16 +331,22 @@ in
|
|||||||
efi.efiSysMountPoint = "/boot";
|
efi.efiSysMountPoint = "/boot";
|
||||||
timeout = 5;
|
timeout = 5;
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||||
|
|
||||||
boot.kernelParams = [
|
boot.kernelParams = [
|
||||||
"quiet"
|
"quiet"
|
||||||
"splash"
|
"splash"
|
||||||
"udev.log_level=3"
|
"udev.log_level=3"
|
||||||
"rd.systemd.show_status=false"
|
"rd.systemd.show_status=false"
|
||||||
|
# Sleep / power management
|
||||||
|
"mem_sleep_default=deep" # Use S3 deep sleep, fixes sleep not working
|
||||||
|
"acpi_osi=Linux" # Tell ACPI this is a Linux system
|
||||||
|
"acpi_backlight=native" # Proper backlight control
|
||||||
|
# Intel GPU — fixes screen blinking on sleep/wake
|
||||||
|
"i915.enable_psr=0"
|
||||||
|
"i915.enable_psr2_sel_fetch=0"
|
||||||
|
# Prevent nvme from waking the system
|
||||||
|
"nvme.noacpi=1"
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.consoleLogLevel = 0;
|
boot.consoleLogLevel = 0;
|
||||||
#boot.initrd.systemd.enable = true;
|
#boot.initrd.systemd.enable = true;
|
||||||
boot.initrd.availableKernelModules = [
|
boot.initrd.availableKernelModules = [
|
||||||
@@ -350,17 +356,30 @@ in
|
|||||||
"sd_mod"
|
"sd_mod"
|
||||||
"rtsx_usb_sdmmc"
|
"rtsx_usb_sdmmc"
|
||||||
];
|
];
|
||||||
|
|
||||||
hardware.enableAllFirmware = true;
|
hardware.enableAllFirmware = true;
|
||||||
|
boot.kernelModules = [
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
"kvm-intel"
|
||||||
|
"asus_wmi" # Asus-specific power/fan/keyboard control
|
||||||
|
];
|
||||||
boot.plymouth = {
|
boot.plymouth = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
|
|
||||||
|
# Power management
|
||||||
|
powerManagement.enable = true;
|
||||||
|
services.thermald.enable = true; # Intel thermal management daemon
|
||||||
|
services.tlp = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
CPU_SCALING_GOVERNOR_ON_AC = "performance";
|
||||||
|
CPU_SCALING_GOVERNOR_ON_BAT = "powersave";
|
||||||
|
CPU_ENERGY_PERF_POLICY_ON_BAT = "power";
|
||||||
|
PLATFORM_PROFILE_ON_AC = "performance";
|
||||||
|
PLATFORM_PROFILE_ON_BAT = "low-power";
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
@@ -2653,13 +2672,6 @@ These settings control Hyprland config
|
|||||||
#+BEGIN_SRC conf :tangle generated/.config/hypr/layout.conf :noweb yes :mkdirp yes :eval never
|
#+BEGIN_SRC conf :tangle generated/.config/hypr/layout.conf :noweb yes :mkdirp yes :eval never
|
||||||
workspace_layouts = dwindle, master, scrolling, monocle
|
workspace_layouts = dwindle, master, scrolling, monocle
|
||||||
|
|
||||||
workspace = 1, layoutopt:hy3:layout:master
|
|
||||||
workspace = 2, layoutopt:hy3:layout:monocle
|
|
||||||
workspace = 3, layoutopt:hy3:layout:master
|
|
||||||
workspace = 4, layoutopt:hy3:layout:scrolling
|
|
||||||
workspace = 5, layoutopt:hy3:layout:dwindle
|
|
||||||
workspace = 6, layoutopt:hy3:layout:monocle
|
|
||||||
|
|
||||||
scrolling {
|
scrolling {
|
||||||
fullscreen_on_one_column = true
|
fullscreen_on_one_column = true
|
||||||
column_width = 0.32 # default: 3 windows side by side
|
column_width = 0.32 # default: 3 windows side by side
|
||||||
@@ -2799,23 +2811,12 @@ windowrule {
|
|||||||
** =generated/.config/hypr/workspace-rules.conf=
|
** =generated/.config/hypr/workspace-rules.conf=
|
||||||
These setttings configure rules for workspaces
|
These setttings configure rules for workspaces
|
||||||
#+BEGIN_SRC conf :tangle generated/.config/hypr/workspace-rules.conf :noweb yes :mkdirp yes :eval never
|
#+BEGIN_SRC conf :tangle generated/.config/hypr/workspace-rules.conf :noweb yes :mkdirp yes :eval never
|
||||||
|
workspace = 1, monitor:eDP-1, layoutopt:layout:master
|
||||||
#Load random wallpaper
|
workspace = 2, monitor:eDP-1, layoutopt:layout:monocle
|
||||||
|
workspace = 3, monitor:eDP-1, layoutopt:layout:master
|
||||||
# Workspace definitions (modern syntax)
|
workspace = 4, monitor:DP-1, layoutopt:layout:scrolling
|
||||||
workspace = 1
|
workspace = 5, monitor:DP-1, layoutopt:layout:dwindle
|
||||||
workspace = 2
|
workspace = 6, monitor:DP-1, layoutopt:layout:dwindle
|
||||||
workspace = 3
|
|
||||||
workspace = 4
|
|
||||||
workspace = 5
|
|
||||||
workspace = 6
|
|
||||||
|
|
||||||
workspace = 1, monitor:eDP-1
|
|
||||||
workspace = 2, monitor:eDP-1
|
|
||||||
workspace = 3, monitor:DP-1
|
|
||||||
workspace = 4, monitor:eDP-1
|
|
||||||
workspace = 5, monitor:eDP-1
|
|
||||||
workspace = 6, monitor:DP-1
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** =generated/.config/quickshell/media/shell.qml=
|
** =generated/.config/quickshell/media/shell.qml=
|
||||||
|
|||||||
@@ -1,13 +1,6 @@
|
|||||||
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
|
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
|
||||||
workspace_layouts = dwindle, master, scrolling, monocle
|
workspace_layouts = dwindle, master, scrolling, monocle
|
||||||
|
|
||||||
workspace = 1, layoutopt:hy3:layout:master
|
|
||||||
workspace = 2, layoutopt:hy3:layout:monocle
|
|
||||||
workspace = 3, layoutopt:hy3:layout:master
|
|
||||||
workspace = 4, layoutopt:hy3:layout:scrolling
|
|
||||||
workspace = 5, layoutopt:hy3:layout:dwindle
|
|
||||||
workspace = 6, layoutopt:hy3:layout:monocle
|
|
||||||
|
|
||||||
scrolling {
|
scrolling {
|
||||||
fullscreen_on_one_column = true
|
fullscreen_on_one_column = true
|
||||||
column_width = 0.32 # default: 3 windows side by side
|
column_width = 0.32 # default: 3 windows side by side
|
||||||
|
|||||||
@@ -1,18 +1,7 @@
|
|||||||
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
|
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
|
||||||
|
workspace = 1, monitor:eDP-1, layoutopt:layout:master
|
||||||
#Load random wallpaper
|
workspace = 2, monitor:eDP-1, layoutopt:layout:monocle
|
||||||
|
workspace = 3, monitor:eDP-1, layoutopt:layout:master
|
||||||
# Workspace definitions (modern syntax)
|
workspace = 4, monitor:DP-1, layoutopt:layout:scrolling
|
||||||
workspace = 1
|
workspace = 5, monitor:DP-1, layoutopt:layout:dwindle
|
||||||
workspace = 2
|
workspace = 6, monitor:DP-1, layoutopt:layout:dwindle
|
||||||
workspace = 3
|
|
||||||
workspace = 4
|
|
||||||
workspace = 5
|
|
||||||
workspace = 6
|
|
||||||
|
|
||||||
workspace = 1, monitor:eDP-1
|
|
||||||
workspace = 2, monitor:eDP-1
|
|
||||||
workspace = 3, monitor:DP-1
|
|
||||||
workspace = 4, monitor:eDP-1
|
|
||||||
workspace = 5, monitor:eDP-1
|
|
||||||
workspace = 6, monitor:DP-1
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
|
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
|
||||||
|
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
|
||||||
{ config, pkgs, lib, flakeRoot, ... }:
|
{ config, pkgs, lib, flakeRoot, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
boot.loader = {
|
boot.loader = {
|
||||||
systemd-boot.enable = true;
|
systemd-boot.enable = true;
|
||||||
@@ -8,16 +8,22 @@
|
|||||||
efi.efiSysMountPoint = "/boot";
|
efi.efiSysMountPoint = "/boot";
|
||||||
timeout = 5;
|
timeout = 5;
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||||
|
|
||||||
boot.kernelParams = [
|
boot.kernelParams = [
|
||||||
"quiet"
|
"quiet"
|
||||||
"splash"
|
"splash"
|
||||||
"udev.log_level=3"
|
"udev.log_level=3"
|
||||||
"rd.systemd.show_status=false"
|
"rd.systemd.show_status=false"
|
||||||
|
# Sleep / power management
|
||||||
|
"mem_sleep_default=deep" # Use S3 deep sleep, fixes sleep not working
|
||||||
|
"acpi_osi=Linux" # Tell ACPI this is a Linux system
|
||||||
|
"acpi_backlight=native" # Proper backlight control
|
||||||
|
# Intel GPU — fixes screen blinking on sleep/wake
|
||||||
|
"i915.enable_psr=0"
|
||||||
|
"i915.enable_psr2_sel_fetch=0"
|
||||||
|
# Prevent nvme from waking the system
|
||||||
|
"nvme.noacpi=1"
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.consoleLogLevel = 0;
|
boot.consoleLogLevel = 0;
|
||||||
#boot.initrd.systemd.enable = true;
|
#boot.initrd.systemd.enable = true;
|
||||||
boot.initrd.availableKernelModules = [
|
boot.initrd.availableKernelModules = [
|
||||||
@@ -27,15 +33,28 @@
|
|||||||
"sd_mod"
|
"sd_mod"
|
||||||
"rtsx_usb_sdmmc"
|
"rtsx_usb_sdmmc"
|
||||||
];
|
];
|
||||||
|
|
||||||
hardware.enableAllFirmware = true;
|
hardware.enableAllFirmware = true;
|
||||||
|
boot.kernelModules = [
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
"kvm-intel"
|
||||||
|
"asus_wmi" # Asus-specific power/fan/keyboard control
|
||||||
|
];
|
||||||
boot.plymouth = {
|
boot.plymouth = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
|
|
||||||
|
# Power management
|
||||||
|
powerManagement.enable = true;
|
||||||
|
services.thermald.enable = true; # Intel thermal management daemon
|
||||||
|
services.tlp = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
CPU_SCALING_GOVERNOR_ON_AC = "performance";
|
||||||
|
CPU_SCALING_GOVERNOR_ON_BAT = "powersave";
|
||||||
|
CPU_ENERGY_PERF_POLICY_ON_BAT = "power";
|
||||||
|
PLATFORM_PROFILE_ON_AC = "performance";
|
||||||
|
PLATFORM_PROFILE_ON_BAT = "low-power";
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user