move some things around

This commit is contained in:
Reid 2024-12-18 16:55:30 -08:00
parent af25753785
commit 473362b5f8
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
7 changed files with 36 additions and 42 deletions

View file

@ -18,10 +18,10 @@ each host should have these files:
## todo ## todo
- multi architecture configuration ([nix-systems](https://github.com/nix-systems/nix-systems)?) - multi architecture configuration ([nix-systems](https://github.com/nix-systems/nix-systems)?)
- divide steam and gamemode?
- hidpi option ? mostly auto these days though - hidpi option ? mostly auto these days though
- better theming for hyprlock, rofi, dunst (accent for hyprlock & dunst, variants for rofi) - better theming for hyprlock, rofi, dunst (accent for hyprlock & dunst, variants for rofi)
- some way for border radius, border, tranparency theme options - some way for border radius, border, tranparency theme options
- tags for pip and popups in hyprland config - tags for pip and popups in hyprland config
- make wl-clip-persist, polkit agent, and networkmanager applet systemd services? - make wl-clip-persist, polkit agent, and networkmanager applet systemd services?
- gtk cursors are MESSED UP. top priority rn - gtk cursors are MESSED UP. top priority rn
- niri.. yum

View file

@ -76,6 +76,7 @@
system.fish.enable = true; system.fish.enable = true;
system.syncthing.enable = true; system.syncthing.enable = true;
system.flatpak.enable = true; system.flatpak.enable = true;
system.mpv.enable = true;
# editors # editors
editors.micro.enable = true; editors.micro.enable = true;
editors.vscode.enable = true; editors.vscode.enable = true;
@ -84,12 +85,11 @@
# distractions # distractions
distractions.discord.enable = true; distractions.discord.enable = true;
distractions.discord.vesktop = true; distractions.discord.vesktop = true;
distractions.gamemode.enable = true;
distractions.steam.enable = true; distractions.steam.enable = true;
# tools # tools
tools.gpg.enable = true; tools.gpg.enable = true;
tools.mpv.enable = true;
tools.rbw.enable = true; tools.rbw.enable = true;
tools.noisetorch.enable = true;
}; };
}; };
} }

View file

@ -137,6 +137,11 @@ in {
"$mod, right, movefocus, r" "$mod, right, movefocus, r"
"$mod, up, movefocus, u" "$mod, up, movefocus, u"
"$mod, down, movefocus, d" "$mod, down, movefocus, d"
# move windows with mod + shift + arrow keys
"$mod SHIFT, left, movewindow, l"
"$mod SHIFT, right, movewindow, r"
"$mod SHIFT, up, movewindow, u"
"$mod SHIFT, down, movewindow, d"
# example special workspace (scratchpad) # example special workspace (scratchpad)
"$mod, grave, togglespecialworkspace, magic" "$mod, grave, togglespecialworkspace, magic"

View file

@ -0,0 +1,26 @@
{ lib, config, pkgs, ... }:
with lib;
let
cfg = config.modules.software.distractions.gamemode;
in {
options.modules.software.distractions.gamemode = {
enable = mkEnableOption "Enable Gamemode, a program to optimize your system performance on demand";
};
config = mkIf cfg.enable {
# optimize linux system performance on demand
# https://github.com/FeralInteractive/gamemode
user.extraGroups = [ "gamemode" ];
programs.gamemode = {
enable = true;
enableRenice = true;
settings = {
general = {
softrealtime = "auto";
renice = 10;
};
};
};
};
}

View file

@ -11,29 +11,6 @@ in {
config = mkIf cfg.enable { config = mkIf cfg.enable {
programs.steam.enable = true; programs.steam.enable = true;
# optimize linux system performance on demand
# https://github.com/FeralInteractive/gamemode
user.extraGroups = [ "gamemode" ];
programs.gamemode = {
enable = true;
enableRenice = true;
settings = {
custom = {
start = "${pkgs.libnotify}/bin/notify-send --app-name GameMode 'GameMode started'";
end = "${pkgs.libnotify}/bin/notify-send --app-name GameMode 'GameMode ended'";
};
};
};
programs.gamescope = {
enable = true;
capSysNice = true;
};
programs.steam.gamescopeSession = {
enable = true;
args = [ "-W 1920" "-H 1080" "-r 60" "--expose-wayland" "-e" ];
};
user.packages = [ pkgs.protontricks pkgs.steam-run ]; user.packages = [ pkgs.protontricks pkgs.steam-run ];
}; };
} }

View file

@ -2,9 +2,9 @@
with lib; with lib;
let let
cfg = config.modules.software.tools.mpv; cfg = config.modules.software.system.mpv;
in { in {
options.modules.software.tools.mpv = { options.modules.software.system.mpv = {
enable = mkEnableOption "Enable mpv, a lightweight video player"; enable = mkEnableOption "Enable mpv, a lightweight video player";
}; };

View file

@ -1,14 +0,0 @@
{ config, lib, ... }:
with lib;
let
cfg = config.modules.software.tools.noisetorch;
in {
options.modules.software.tools.noisetorch = {
enable = mkEnableOption "Enable noisetorch, a microphone noise supression tool";
};
config = mkIf cfg.enable {
programs.noisetorch.enable = true;
};
}