Compare commits
10 Commits
5431938cc7
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 4901f9a753 | |||
| 410649a071 | |||
| 8949119111 | |||
| f58522d910 | |||
| d0a821f9b3 | |||
| 5a90c21fc3 | |||
| 22f1df08c3 | |||
| ab1be61033 | |||
| 6415abe966 | |||
| fd6ba1e830 |
1140
flake.lock
generated
1140
flake.lock
generated
File diff suppressed because it is too large
Load Diff
13
flake.nix
13
flake.nix
@@ -12,6 +12,17 @@
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs.home-manager.follows = "home-manager";
|
||||
};
|
||||
hyprland.url = "github:hyprwm/Hyprland";
|
||||
hyprland-plugins = {
|
||||
url = "github:hyprwm/hyprland-plugins";
|
||||
inputs.hyprland.follows = "hyprland";
|
||||
};
|
||||
naviterm = {
|
||||
url = "gitlab:detoxify92/naviterm";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
nix-cachyos-kernel.url = "github:xddxdd/nix-cachyos-kernel/release";
|
||||
millennium.url = "github:SteamClientHomebrew/Millennium?dir=packages/nix";
|
||||
master.url = "github:NixOS/nixpkgs/master";
|
||||
home-manager.url = "github:nix-community/home-manager";
|
||||
noctalia = {
|
||||
@@ -33,7 +44,7 @@
|
||||
};
|
||||
|
||||
|
||||
outputs = { self, stylix, astal, nixpkgs, home-manager, zen-browser, master, nixos-apple-silicon, nixvim, noctalia,... }@inputs:
|
||||
outputs = { self, stylix, astal, nixpkgs, home-manager, zen-browser, master, nixos-apple-silicon, nix-cachyos-kernel, nixvim, noctalia,... }@inputs:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
lib = nixpkgs.lib;
|
||||
|
||||
@@ -1,8 +1,5 @@
|
||||
#Edit this configuration file to define what should be installed on
|
||||
# your system. Help is available in the configuration.nix(5) man page
|
||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||
|
||||
{ config, pkgs, master, lib, pkgs-master, ... }:
|
||||
{ config, pkgs, master, lib, pkgs-master, inputs, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
@@ -46,9 +43,13 @@ boot = {
|
||||
# Enable "Silent Boot"
|
||||
consoleLogLevel = 0;
|
||||
initrd.verbose = false;
|
||||
kernelPackages = pkgs.linuxPackages_zen;
|
||||
kernelPackages = pkgs.cachyosKernels.linuxPackages-cachyos-latest;
|
||||
kernelModules = [ "amdgpu" ];
|
||||
kernelPatches = [
|
||||
/*{
|
||||
name = "frl";
|
||||
patch = ../../patches/0001-amdgpu-frl.patch;
|
||||
}*/
|
||||
/*{
|
||||
name = "dsc";
|
||||
patch = ../../patches/bigscreen_1.patch;
|
||||
@@ -140,7 +141,6 @@ boot = {
|
||||
services.desktopManager.gnome.enable = false;
|
||||
services.displayManager.gdm.enable = false;
|
||||
programs.hyprland = {
|
||||
withUWSM = true;
|
||||
enable = true;
|
||||
};
|
||||
/*services.displayManager = {
|
||||
@@ -153,11 +153,15 @@ boot = {
|
||||
services.greetd = {
|
||||
enable = true;
|
||||
settings = rec {
|
||||
initial_session = {
|
||||
hyprland_session = {
|
||||
command = "dbus-launch ${pkgs.hyprland}/bin/start-hyprland";
|
||||
user = "joshuaelm";
|
||||
};
|
||||
default_session = initial_session;
|
||||
gamescope_session = {
|
||||
command = "${lib.getExe pkgs.gamescope} -W 3840 -H 2160 -r 120 --hdr-enabled --adaptive-sync --rt --steam -- steam -gamepadui -steamdeck -steamos3 > /dev/null 2>&1";
|
||||
user = "joshuaelm";
|
||||
};
|
||||
default_session = hyprland_session;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -209,23 +213,6 @@ boot = {
|
||||
# use the example session manager (no others are packaged yet so this is enabled by default,
|
||||
# no need to redefine it in your config for now)
|
||||
#media-session.enable = true;
|
||||
extraConfig.pipewire."92-low-latency" = {
|
||||
"context.properties" = {
|
||||
"default.clock.rate" = 48000;
|
||||
"default.clock.quantum" = 32;
|
||||
"default.clock.min-quantum" = 32;
|
||||
"default.clock.max-quantum" = 32;
|
||||
};
|
||||
};
|
||||
};
|
||||
services.pulseaudio.configFile = pkgs.runCommand "default.pa" {} ''
|
||||
sed 's/module-udev-detect$/module-udev-detect tsched=0/' \
|
||||
${pkgs.pulseaudio}/etc/pulse/default.pa > $out
|
||||
'';
|
||||
environment.etc."wireplumber/main.lua.d/90-suspend-timeout.lua" = {
|
||||
text = ''
|
||||
session.suspend-timeout-seconds = 0
|
||||
'';
|
||||
};
|
||||
|
||||
services.pulseaudio.extraConfig = ''
|
||||
@@ -312,10 +299,10 @@ services.pulseaudio.extraConfig = ''
|
||||
alsa-lib atk cairo cups curl dbus expat file fish fontconfig freetype
|
||||
fuse glib gtk3 libGL libnotify libxml2 libxslt netcat nspr nss openjdk8
|
||||
openssl.dev cava pango appimage-run pkg-config strace udev vulkan-loader watch wget which
|
||||
xorg.libX11 icu xorg.libxcb xorg.libXcomposite xorg.libXcursor
|
||||
xorg.libXdamage xorg.libXext xorg.libXfixes xorg.libXi xorg.libXrandr
|
||||
xorg.libXrender xorg.libXScrnSaver openssl xorg.libxshmfence xorg.libXtst
|
||||
xorg.xcbutilkeysyms zlib fontconfig.lib SDL2 libGL libuuid xorg.libXft
|
||||
libX11 icu libxcb libXcomposite libXcursor
|
||||
libXdamage libXext libXfixes libXi libXrandr
|
||||
libXrender libXScrnSaver openssl libxshmfence libXtst
|
||||
xcbutilkeysyms zlib fontconfig.lib SDL2 libGL libuuid libXft
|
||||
];
|
||||
profile = ''export FHS=1'';
|
||||
runScript = "fish";
|
||||
@@ -337,6 +324,7 @@ services.pulseaudio.extraConfig = ''
|
||||
ryubing
|
||||
gomatrix
|
||||
python3
|
||||
#inputs.naviterm.packages.${pkgs.system}.default
|
||||
pavucontrol
|
||||
sbctl
|
||||
boxflat
|
||||
@@ -344,10 +332,8 @@ services.pulseaudio.extraConfig = ''
|
||||
thunar
|
||||
corectrl
|
||||
wiremix
|
||||
termsonic
|
||||
steamtinkerlaunch
|
||||
kdePackages.kdenlive
|
||||
wineWowPackages.wayland
|
||||
wineWow64Packages.wayland
|
||||
blueman
|
||||
lapce
|
||||
prismlauncher
|
||||
@@ -370,25 +356,32 @@ services.pulseaudio.extraConfig = ''
|
||||
|
||||
services.xserver.enableTCP = true;
|
||||
services.sunshine = {
|
||||
enable = true;
|
||||
enable = false;
|
||||
autoStart = false;
|
||||
capSysAdmin = true;
|
||||
openFirewall = true;
|
||||
|
||||
};
|
||||
# Enable Steam
|
||||
nixpkgs.overlays = [
|
||||
inputs.millennium.overlays.default
|
||||
inputs.nix-cachyos-kernel.overlays.pinned
|
||||
];
|
||||
|
||||
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
|
||||
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
|
||||
package = pkgs.millennium-steam;
|
||||
};
|
||||
hardware.steam-hardware.enable=true;
|
||||
services.monado = {
|
||||
enable = false;
|
||||
defaultRuntime = true; # Register as default OpenXR runtime
|
||||
};
|
||||
services.wivrn.enable = false;
|
||||
services.wivrn.package = pkgs-master.wivrn;
|
||||
services.wivrn.enable = true;
|
||||
services.wivrn.package = pkgs.wivrn;
|
||||
services.wivrn.defaultRuntime = true;
|
||||
systemd.user.services.monado.environment = {
|
||||
STEAMVR_LH_ENABLE = "1";
|
||||
@@ -402,12 +395,12 @@ services.pulseaudio.extraConfig = ''
|
||||
|
||||
nixpkgs.config.packageOverrides = pkgs: {
|
||||
steam = pkgs.steam.override {
|
||||
extraLibraries = pkgs: [ pkgs.xorg.libxcb ];
|
||||
extraLibraries = pkgs: [ pkgs.libxcb ];
|
||||
extraPkgs = pkgs: with pkgs; [
|
||||
xorg.libXcursor
|
||||
xorg.libXi
|
||||
xorg.libXinerama
|
||||
xorg.libXScrnSaver
|
||||
libXcursor
|
||||
libXi
|
||||
libXinerama
|
||||
libXScrnSaver
|
||||
libpng
|
||||
libpulseaudio
|
||||
libvorbis
|
||||
@@ -420,7 +413,7 @@ services.pulseaudio.extraConfig = ''
|
||||
|
||||
programs.gamescope = {
|
||||
enable = true;
|
||||
capSysNice = false;
|
||||
capSysNice = true;
|
||||
};
|
||||
|
||||
programs.nix-ld.enable = true;
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
pkgs.swaybg
|
||||
pkgs.gpu-screen-recorder
|
||||
pkgs.gpu-screen-recorder-gtk
|
||||
pkgs.supersonic
|
||||
pkgs.feishin
|
||||
pkgs.adw-gtk3
|
||||
];
|
||||
|
||||
|
||||
@@ -27,6 +27,7 @@
|
||||
trusted-users = [ "root" "joshuaelm" ];
|
||||
};
|
||||
|
||||
programs.gpu-screen-recorder.enable = true;
|
||||
|
||||
# Bootloader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
@@ -97,8 +98,11 @@
|
||||
services.desktopManager.plasma6.enable = false;
|
||||
services.displayManager.sddm.enable = false;
|
||||
services.libinput.enable = true;
|
||||
programs.hyprland.enable = true;
|
||||
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||
programs.hyprland = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
|
||||
services.greetd = {
|
||||
enable = true;
|
||||
@@ -181,6 +185,9 @@
|
||||
killall
|
||||
hypridle
|
||||
git
|
||||
gpu-screen-recorder
|
||||
bluebubbles
|
||||
inputs.naviterm.packages.${pkgs.system}.default
|
||||
bibata-cursors
|
||||
element-desktop
|
||||
rofi
|
||||
@@ -215,6 +222,8 @@
|
||||
# Or disable the firewall altogether.
|
||||
networking.firewall.enable = false;
|
||||
|
||||
nixpkgs.config.allowUnsupportedSystem = true;
|
||||
|
||||
# This value determines the NixOS release from which the default
|
||||
# settings for stateful data, like file locations and database versions
|
||||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
home.packages = [
|
||||
pkgs.element-desktop
|
||||
pkgs.signal-desktop-bin
|
||||
pkgs.supersonic
|
||||
pkgs.feishin
|
||||
pkgs.libreoffice
|
||||
pkgs.adw-gtk3
|
||||
pkgs.thunderbird
|
||||
|
||||
@@ -1,5 +1,17 @@
|
||||
{ config, pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
imports = [ ./stylix ./cava ./hypr ./kitty ./noctalia ./nushell ./nvim ./starship ./yazi ./zen];
|
||||
imports =
|
||||
[
|
||||
./stylix
|
||||
./cava
|
||||
./hypr
|
||||
./kitty
|
||||
./noctalia
|
||||
./nushell
|
||||
./nvim
|
||||
./starship
|
||||
./yazi
|
||||
./zen
|
||||
];
|
||||
}
|
||||
|
||||
@@ -1,215 +1,178 @@
|
||||
{pkgs, ...}:
|
||||
{ pkgs, inputs, lib, ... }:
|
||||
|
||||
{
|
||||
services.hyprpolkitagent.enable = true;
|
||||
programs.hyprshot.enable = true;
|
||||
wayland.windowManager.hyprland.enable = true;
|
||||
wayland.windowManager.hyprland.package = null;
|
||||
wayland.windowManager.hyprland.portalPackage = null;
|
||||
wayland.windowManager.hyprland.extraConfig = ''
|
||||
autogenerated = 0 # remove this line to remove the warning
|
||||
programs.hyprlock.enable = true;
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
package = null;
|
||||
portalPackage = null;
|
||||
settings = {
|
||||
# Variables
|
||||
"$terminal" = "kitty -e nu";
|
||||
"$fileManager" = "kitty -e yazi";
|
||||
"$menu" = "noctalia-shell ipc call launcher toggle";
|
||||
"$bar" = "noctalia-shell";
|
||||
"$mainMod" = "SUPER";
|
||||
|
||||
# Monitors
|
||||
monitor = [
|
||||
"HDMI-A-1, 3840x2160@120, 0x0, auto, bitdepth, 10"
|
||||
"eDP-1, 2560x1600@60, 0x0, 1.6"
|
||||
"DP-1, highres@highrr, 0x0, 1"
|
||||
];
|
||||
|
||||
# Startup applications
|
||||
exec-once = [
|
||||
"noctalia-shell"
|
||||
"hyprlock"
|
||||
"hyprctl dispatch workspace 1"
|
||||
"pw-metadata -n settings 0 clock.force-quantum 2048"
|
||||
"systemctl --user start hyprpolkitagent"
|
||||
"sunshine"
|
||||
""
|
||||
];
|
||||
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Monitors/
|
||||
monitor = HDMI-A-1, 3840x2160@120, 0x0, auto, bitdepth, 10, sdrsaturation, 1, sdrbrightness, 1
|
||||
#monitor = HDMI-A-1, disable
|
||||
monitor = eDP-1, 2560x1600@60, 0x0, 1.6,
|
||||
#monitor = sunshine, highres@highrr, 0x0, 1
|
||||
monitor = DP-1, highres@highrr, 0x0, 1
|
||||
#monitor = DP-1, highres@highrr, 0x0, 1, bitdepth, 10, cm, hdr, sdrsaturation, 1, sdrbrightness, 1
|
||||
exec-once = hyprctl dispatch workspace 1
|
||||
#exec-once = linux-wallpaperengine --screen-root HDMI-A-1 --silent --fps 60 3000562427
|
||||
exec-once = noctalia-shell& sleep 3 && noctalia-shell ipc call lockScreen lock
|
||||
exec-once = pw-metadata -n settings 0 clock.force-quantum 2048
|
||||
# exec-once = ashell
|
||||
exec-once = systemctl --user start hyprpolkitagent
|
||||
exec-once = sunshine
|
||||
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
||||
# Debug settings
|
||||
debug.full_cm_proto = true;
|
||||
|
||||
# Execute your favorite apps at launch
|
||||
# exec-once = waybar & hyprpaper & firefox
|
||||
# Environment variables
|
||||
env = [
|
||||
"XCURSOR_SIZE,24"
|
||||
"QT_QPA_PLATFORMTHEME,qt6ct"
|
||||
];
|
||||
|
||||
debug:full_cm_proto=true
|
||||
input = {
|
||||
kb_layout = "us";
|
||||
kb_variant = "";
|
||||
kb_model = "";
|
||||
kb_options = "";
|
||||
kb_rules = "";
|
||||
accel_profile = "flat";
|
||||
follow_mouse = 1;
|
||||
|
||||
# Set programs that you use
|
||||
$terminal = kitty -e nu
|
||||
$fileManager = kitty -e yazi
|
||||
$menu = noctalia-shell ipc call launcher toggle
|
||||
$bar = noctalia-shell
|
||||
touchpad = {
|
||||
natural_scroll = true;
|
||||
tap-to-click = false;
|
||||
drag_3fg = true;
|
||||
clickfinger_behavior = true;
|
||||
tap-and-drag = false;
|
||||
};
|
||||
|
||||
# Some default env vars.
|
||||
env = XCURSOR_SIZE,24
|
||||
env = QT_QPA_PLATFORMTHEME,qt6ct # change to qt6ct if you have that
|
||||
sensitivity = 0;
|
||||
};
|
||||
|
||||
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
|
||||
input {
|
||||
kb_layout = us
|
||||
kb_variant =
|
||||
kb_model =
|
||||
kb_options =
|
||||
kb_rules =
|
||||
accel_profile = flat
|
||||
render.cm_fs_passthrough = false;
|
||||
|
||||
follow_mouse = 1
|
||||
general = {
|
||||
gaps_in = 5;
|
||||
gaps_out = 5;
|
||||
border_size = 2;
|
||||
layout = "dwindle";
|
||||
allow_tearing = false;
|
||||
};
|
||||
|
||||
touchpad {
|
||||
natural_scroll = yes
|
||||
tap-to-click = false
|
||||
drag_3fg = yes
|
||||
clickfinger_behavior = yes
|
||||
tap-and-drag = no
|
||||
}
|
||||
decoration = {
|
||||
rounding = 5;
|
||||
|
||||
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
||||
}
|
||||
|
||||
render {
|
||||
cm_fs_passthrough = false
|
||||
}
|
||||
|
||||
general {
|
||||
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
||||
|
||||
gaps_in = 5
|
||||
gaps_out = 5
|
||||
border_size = 2
|
||||
layout = dwindle
|
||||
|
||||
# Please see https://wiki.hyprland.org/Configuring/Tearing/ before you turn this on
|
||||
allow_tearing = false
|
||||
}
|
||||
|
||||
|
||||
# windowrulev2 = immediate, class:^(cs2)$
|
||||
|
||||
decoration {
|
||||
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
||||
|
||||
rounding = 5
|
||||
|
||||
blur {
|
||||
enabled = yes
|
||||
size = 5
|
||||
passes = 3
|
||||
new_optimizations = on
|
||||
ignore_opacity = on
|
||||
xray = false
|
||||
}
|
||||
|
||||
shadow {
|
||||
enabled = true
|
||||
offset = 3, 3
|
||||
color = rgba(323232cc)
|
||||
}
|
||||
}
|
||||
|
||||
animations {
|
||||
enabled = yes
|
||||
|
||||
# Some default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more
|
||||
|
||||
bezier = myBezier, 0.05, 0.9, 0.1, 1.05
|
||||
|
||||
animation = windows, 1, 7, myBezier
|
||||
animation = windowsOut, 1, 7, default, popin 80%
|
||||
animation = border, 1, 10, default
|
||||
animation = borderangle, 1, 8, default
|
||||
animation = fade, 1, 7, default
|
||||
animation = workspaces, 1, 6, default
|
||||
}
|
||||
|
||||
dwindle {
|
||||
# See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more
|
||||
pseudotile = yes # master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below
|
||||
preserve_split = yes # you probably want this
|
||||
}
|
||||
|
||||
|
||||
gestures {
|
||||
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
||||
}
|
||||
|
||||
misc {
|
||||
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
||||
force_default_wallpaper = 0 # Set to 0 to disable the anime mascot wallpapers
|
||||
enable_anr_dialog = 0
|
||||
}
|
||||
|
||||
|
||||
# Example per-device config
|
||||
# See https://wiki.hyprland.org/Configuring/Keywords/#executing for more
|
||||
|
||||
|
||||
# Example windowrule v1
|
||||
# windowrule = float, ^(kitty)$
|
||||
# Example windowrule v2
|
||||
# windowrulev2 = float,class:^(kitty)$,title:^(kitty)$
|
||||
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
|
||||
|
||||
# Window Rules
|
||||
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
||||
$mainMod = SUPER
|
||||
|
||||
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
||||
bind = $mainMod, Return, exec, $terminal
|
||||
bind = $mainMod, Q, killactive,
|
||||
bind = $mainMod, M, exec, noctalia-shell ipc call lockScreen lock
|
||||
bind = $mainMod, E, exec, $fileManager
|
||||
bind = $mainMod, V, togglefloating,
|
||||
bind = $mainMod, Space, exec, $menu
|
||||
bind = $mainMod, B, exec, zen
|
||||
bind = $mainMod, P, pseudo, # dwindle
|
||||
bind = $mainMod, J, togglesplit, # dwindle
|
||||
bind = $mainMod, F, fullscreen,
|
||||
bind = , XF86AudioRaiseVolume, exec, wpctl set-volume -l 1.0 @DEFAULT_AUDIO_SINK@ 5%+
|
||||
bind = , XF86AudioLowerVolume, exec, wpctl set-volume -l 1.0 @DEFAULT_AUDIO_SINK@ 5%-
|
||||
|
||||
# Move focus with mainMod + arrow keys
|
||||
bind = $mainMod, left, movefocus, l
|
||||
bind = $mainMod, right, movefocus, r
|
||||
bind = $mainMod, up, movefocus, u
|
||||
bind = $mainMod, down, movefocus, d
|
||||
|
||||
# Switch workspaces with mainMod + [0-9]
|
||||
bind = $mainMod, 1, workspace, 1
|
||||
bind = $mainMod, 2, workspace, 2
|
||||
bind = $mainMod, 3, workspace, 3
|
||||
bind = $mainMod, 4, workspace, 4
|
||||
bind = $mainMod, 5, workspace, 5
|
||||
bind = $mainMod, 6, workspace, 6
|
||||
bind = $mainMod, 7, workspace, 7
|
||||
bind = $mainMod, 8, workspace, 8
|
||||
bind = $mainMod, 9, workspace, 9
|
||||
bind = $mainMod, 0, workspace, 10
|
||||
|
||||
# Move active window to a workspace with mainMod + SHIFT + [0-9]
|
||||
bind = $mainMod SHIFT, 1, movetoworkspace, 1
|
||||
bind = $mainMod SHIFT, 2, movetoworkspace, 2
|
||||
bind = $mainMod SHIFT, 3, movetoworkspace, 3
|
||||
bind = $mainMod SHIFT, 4, movetoworkspace, 4
|
||||
bind = $mainMod SHIFT, 5, movetoworkspace, 5
|
||||
bind = $mainMod SHIFT, 6, movetoworkspace, 6
|
||||
bind = $mainMod SHIFT, 7, movetoworkspace, 7
|
||||
bind = $mainMod SHIFT, 8, movetoworkspace, 8
|
||||
bind = $mainMod SHIFT, 9, movetoworkspace, 9
|
||||
bind = $mainMod SHIFT, 0, movetoworkspace, 10
|
||||
|
||||
# Example special workspace (scratchpad)
|
||||
bind = $mainMod, S, togglespecialworkspace, magic
|
||||
bind = $mainMod SHIFT, S, movetoworkspace, special:magic
|
||||
|
||||
# Scroll through existing workspaces with mainMod + scroll
|
||||
bind = $mainMod, mouse_down, workspace, e+1
|
||||
bind = $mainMod, mouse_up, workspace, e-1
|
||||
|
||||
# Move/resize windows with mainMod + LMB/RMB and dragging
|
||||
bindm = $mainMod, mouse:272, movewindow
|
||||
bindm = $mainMod, mouse:273, resizewindow
|
||||
|
||||
# Screen Recording
|
||||
bind = , code:76, exec, killall -SIGUSR1 gpu-screen-recorder
|
||||
bind = , code:75, exec, killall -SIGINT gpu-screen-recorder
|
||||
'';
|
||||
blur = {
|
||||
enabled = true;
|
||||
size = 5;
|
||||
passes = 3;
|
||||
new_optimizations = true;
|
||||
ignore_opacity = true;
|
||||
xray = false;
|
||||
};
|
||||
|
||||
shadow = {
|
||||
enabled = true;
|
||||
offset = "3, 3";
|
||||
};
|
||||
};
|
||||
|
||||
animations = {
|
||||
enabled = true;
|
||||
|
||||
bezier = [
|
||||
"myBezier, 0.05, 0.9, 0.1, 1.05"
|
||||
];
|
||||
|
||||
animation = [
|
||||
"windows, 1, 7, myBezier"
|
||||
"windowsOut, 1, 7, default, popin 80%"
|
||||
"border, 1, 10, default"
|
||||
"borderangle, 1, 8, default"
|
||||
"fade, 1, 7, default"
|
||||
"workspaces, 1, 6, default"
|
||||
];
|
||||
};
|
||||
|
||||
dwindle = {
|
||||
pseudotile = true;
|
||||
preserve_split = true;
|
||||
};
|
||||
|
||||
gestures = [
|
||||
"3, horizontal, workspace"
|
||||
];
|
||||
|
||||
misc = {
|
||||
force_default_wallpaper = 0;
|
||||
enable_anr_dialog = 0;
|
||||
vrr = 1;
|
||||
};
|
||||
|
||||
bind = [
|
||||
"$mainMod, Return, exec, $terminal"
|
||||
"$mainMod, Q, killactive"
|
||||
"$mainMod, M, exec, noctalia-shell ipc call lockScreen lock"
|
||||
"$mainMod, E, exec, $fileManager"
|
||||
"$mainMod, V, togglefloating"
|
||||
"$mainMod, Space, exec, $menu"
|
||||
"$mainMod, B, exec, zen"
|
||||
"$mainMod, P, pseudo"
|
||||
"$mainMod, J, togglesplit"
|
||||
"$mainMod, F, fullscreen"
|
||||
", XF86AudioRaiseVolume, exec, wpctl set-volume -l 1.0 @DEFAULT_AUDIO_SINK@ 5%+"
|
||||
", XF86AudioLowerVolume, exec, wpctl set-volume -l 1.0 @DEFAULT_AUDIO_SINK@ 5%-"
|
||||
"$mainMod, left, movefocus, l"
|
||||
"$mainMod, right, movefocus, r"
|
||||
"$mainMod, up, movefocus, u"
|
||||
"$mainMod, down, movefocus, d"
|
||||
"$mainMod, 1, workspace, 1"
|
||||
"$mainMod, 2, workspace, 2"
|
||||
"$mainMod, 3, workspace, 3"
|
||||
"$mainMod, 4, workspace, 4"
|
||||
"$mainMod, 5, workspace, 5"
|
||||
"$mainMod, 6, workspace, 6"
|
||||
"$mainMod, 7, workspace, 7"
|
||||
"$mainMod, 8, workspace, 8"
|
||||
"$mainMod, 9, workspace, 9"
|
||||
"$mainMod, 0, workspace, 10"
|
||||
"$mainMod SHIFT, 1, movetoworkspace, 1"
|
||||
"$mainMod SHIFT, 2, movetoworkspace, 2"
|
||||
"$mainMod SHIFT, 3, movetoworkspace, 3"
|
||||
"$mainMod SHIFT, 4, movetoworkspace, 4"
|
||||
"$mainMod SHIFT, 5, movetoworkspace, 5"
|
||||
"$mainMod SHIFT, 6, movetoworkspace, 6"
|
||||
"$mainMod SHIFT, 7, movetoworkspace, 7"
|
||||
"$mainMod SHIFT, 8, movetoworkspace, 8"
|
||||
"$mainMod SHIFT, 9, movetoworkspace, 9"
|
||||
"$mainMod SHIFT, 0, movetoworkspace, 10"
|
||||
"$mainMod, S, togglespecialworkspace, magic"
|
||||
"$mainMod SHIFT, S, movetoworkspace, special:magic"
|
||||
"$mainMod, mouse_down, workspace, e+1"
|
||||
"$mainMod, mouse_up, workspace, e-1"
|
||||
", code:76, exec, killall -SIGUSR1 gpu-screen-recorder"
|
||||
", code:75, exec, killall -SIGINT gpu-screen-recorder"
|
||||
];
|
||||
|
||||
bindm = [
|
||||
"$mainMod, mouse:272, movewindow"
|
||||
"$mainMod, mouse:273, resizewindow"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -19,8 +19,8 @@
|
||||
backgroundOpacity = 1;
|
||||
useSeparateOpacity = false;
|
||||
floating = true;
|
||||
marginVertical = 4;
|
||||
marginHorizontal = 18;
|
||||
marginVertical = 5;
|
||||
marginHorizontal = 5;
|
||||
outerCorners = false;
|
||||
exclusive = true;
|
||||
hideOnOverview = false;
|
||||
@@ -80,7 +80,7 @@
|
||||
enabled = false;
|
||||
};
|
||||
osd = {
|
||||
location = "center_right";
|
||||
location = "right";
|
||||
};
|
||||
location = {
|
||||
monthBeforeDay = true;
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
imports = [ ./config.nix ];
|
||||
programs.nixvim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
plugins.nvim-tree.enable = true;
|
||||
plugins.treesitter.enable = true;
|
||||
plugins.lualine.enable = true;
|
||||
|
||||
@@ -1,16 +1,17 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
stylix.enable = true;
|
||||
stylix.polarity = "light";
|
||||
stylix.autoEnable = true;
|
||||
#stylix.targets.plymouth.enable = false;
|
||||
stylix.targets.kitty.enable = true;
|
||||
stylix.polarity = "dark";
|
||||
stylix.targets.zen-browser.profileNames = [ "default" ];
|
||||
stylix.targets.zen-browser.enable = true;
|
||||
# blue aura house
|
||||
/* stylix.image = pkgs.fetchurl {
|
||||
stylix.image = pkgs.fetchurl {
|
||||
url = "https://w.wallhaven.cc/full/1p/wallhaven-1py8lw.jpg";
|
||||
hash = "sha256-smJTuprm8PVKWv56hfv9UMzDXkHm3R7O1ALaNpNYy3E=";
|
||||
};*/
|
||||
};
|
||||
# coastal town
|
||||
/*stylix.image = pkgs.fetchurl {
|
||||
url = "https://w.wallhaven.cc/full/ex/wallhaven-ex8vml.jpg";
|
||||
@@ -42,10 +43,10 @@
|
||||
};*/
|
||||
|
||||
# Girl playing piano in flower field
|
||||
stylix.image = pkgs.fetchurl {
|
||||
/*stylix.image = pkgs.fetchurl {
|
||||
url = "https://gitea.base.jeditemple.com/joshuaelm/Wallpapers/raw/branch/main/generic/88677104_p0.png";
|
||||
hash = "sha256-IIKzA4DgWg9P48A+x/vBKjaD7seNBtkh/0wSXY2O3x8=";
|
||||
};
|
||||
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/atelier-plateau-light.yaml";
|
||||
};*/
|
||||
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/atelier-sulphurpool.yaml";
|
||||
|
||||
}
|
||||
|
||||
@@ -2,5 +2,6 @@
|
||||
{
|
||||
programs.yazi = {
|
||||
enable = true;
|
||||
shellWrapperName = "y";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
];
|
||||
programs.zen-browser = {
|
||||
enable = true;
|
||||
|
||||
suppressXdgMigrationWarning = true;
|
||||
profiles = {
|
||||
default = {
|
||||
# bookmarks, extensions, search engines...
|
||||
|
||||
11685
patches/0001-amdgpu-frl.patch
Normal file
11685
patches/0001-amdgpu-frl.patch
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user