This commit is contained in:
kenji
2025-07-31 06:41:23 -05:00
parent e90d182cde
commit 2cbe32f561
6 changed files with 16 additions and 15 deletions
-1
View File
@@ -39,7 +39,6 @@
]; ];
}; };
Hyprland = { Hyprland = {
enable = false;
monitors = [ monitors = [
# "DP-2, highres@165,0x1080,1,vrr,1" # "DP-2, highres@165,0x1080,1,vrr,1"
# "DP-2, highres@180,0x1080,1,cm,hdr, sdrbrightness, 1.5, sdrsaturation, 0.98" # "DP-2, highres@180,0x1080,1,cm,hdr, sdrbrightness, 1.5, sdrsaturation, 0.98"
+13 -11
View File
@@ -96,16 +96,15 @@
}; };
services = { services = {
displayManager.sessionPackages = [inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland]; displayManager.sessionPackages = lib.mkIf (!myConfig.nixos.enableSteamOS) [inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland];
# getty.autologinUser = "${myConfig.essentials.Username}"; getty.autologinUser = lib.mkIf (!myConfig.nixos.enableSteamOS) "${myConfig.essentials.Username}";
# greetd = { greetd = lib.mkIf (!myConfig.nixos.enableSteamOS) {
# enable = true; enable = true;
# settings.default_session = { settings.default_session = {
# user = "${myConfig.essentials.Username}"; user = "${myConfig.essentials.Username}";
# command = "Hyprland"; command = "Hyprland";
# }; };
# }; };
seatd.enable = true; seatd.enable = true;
upower.enable = true; upower.enable = true;
scx.enable = true; # by default uses scx_rustland scheduler scx.enable = true; # by default uses scx_rustland scheduler
@@ -147,6 +146,7 @@
networking = { networking = {
# wakeOnLan.enable = true; # wakeOnLan.enable = true;
# networkd.enable = true;
networkmanager.enable = true; networkmanager.enable = true;
firewall = { firewall = {
enable = true; enable = true;
@@ -156,6 +156,7 @@
proxy.default = null; proxy.default = null;
proxy.noProxy = null; proxy.noProxy = null;
}; };
systemd.network.enable = true;
boot.loader.timeout = 0; boot.loader.timeout = 0;
boot.loader.limine.maxGenerations = 5; boot.loader.limine.maxGenerations = 5;
@@ -166,7 +167,8 @@
"boot.shell_on_fail" "boot.shell_on_fail"
"udev.log_priority=3" "udev.log_priority=3"
"rd.systemd.show_status=auto" "rd.systemd.show_status=auto"
"amd_pstate=active" "kvm.enable_virt_at_load=0" # for virtualbox
# "amd_pstate=active"
]; ];
boot.kernelPackages = pkgs.linuxPackages_cachyos; boot.kernelPackages = pkgs.linuxPackages_cachyos;
# boot.kernel.sysctl = { # boot.kernel.sysctl = {
-2
View File
@@ -14,8 +14,6 @@
++ [ ++ [
../../packages/steam/default.nix ../../packages/steam/default.nix
../../packages/bottles/default.nix ../../packages/bottles/default.nix
]
++ lib.optionals (myConfig.nixos.enableSteamOS == true) [
../../packages/steam/jovian.nix ../../packages/steam/jovian.nix
]; ];
} }
+1
View File
@@ -40,6 +40,7 @@
"$mod, D, global, caelestia:launcherInterrupt" "$mod, D, global, caelestia:launcherInterrupt"
"$mod, Escape, global, caelestia:launcherInterrupt" "$mod, Escape, global, caelestia:launcherInterrupt"
"$mod, PERIOD, global, caelestia:launcherInterrupt" "$mod, PERIOD, global, caelestia:launcherInterrupt"
"$mod, SPACE, global, caelestia:launcherInterrupt"
"$mod, E, global, caelestia:launcherInterrupt" "$mod, E, global, caelestia:launcherInterrupt"
"$mod, V, global, caelestia:launcherInterrupt" "$mod, V, global, caelestia:launcherInterrupt"
+1 -1
View File
@@ -69,7 +69,7 @@
# Steam # Steam
"workspace special:steam, class:steam" "workspace special:steam, class:steam"
"workspace special:gaming, class:^(steam_app_.*)$" # "workspace special:gaming, class:^(steam_app_.*)$"
"rounding 10, title:, class:steam" "rounding 10, title:, class:steam"
"float, title:Friends List, class:steam" "float, title:Friends List, class:steam"
"immediate, class:steam_app_[0-9]+" "immediate, class:steam_app_[0-9]+"
+1
View File
@@ -1,4 +1,5 @@
{ {
virtualisation.virtualbox.host.enable = true; virtualisation.virtualbox.host.enable = true;
users.extraGroups.vboxusers.members = ["user-with-access-to-virtualbox"]; users.extraGroups.vboxusers.members = ["user-with-access-to-virtualbox"];
virtualisation.virtualbox.host.enableExtensionPack = true;
} }