push
This commit is contained in:
@@ -1,6 +1,10 @@
|
||||
{
|
||||
{ inputs, ...}: {
|
||||
den.aspects.autocpufreq = {
|
||||
nixos = {
|
||||
imports = [ inputs.auto-cpufreq.nixosModules.default ];
|
||||
|
||||
services.power-profiles-daemon.enable = false;
|
||||
|
||||
programs.auto-cpufreq.enable = true;
|
||||
|
||||
programs.auto-cpufreq.settings = {
|
||||
|
||||
@@ -10,6 +10,10 @@
|
||||
imports = [ inputs.niri.homeModules.niri ];
|
||||
nixpkgs.overlays = [ inputs.niri.overlays.niri ];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
xwayland-satellite
|
||||
];
|
||||
|
||||
programs.niri = {
|
||||
enable = true;
|
||||
package = pkgs.niri;
|
||||
@@ -20,7 +24,7 @@
|
||||
];
|
||||
|
||||
input.keyboard = {
|
||||
xkb.layout = "us,ua";
|
||||
xkb.layout = "us";
|
||||
};
|
||||
|
||||
input.touchpad = {
|
||||
@@ -76,34 +80,39 @@
|
||||
|
||||
binds = {
|
||||
"Mod+T".action.spawn = "cosmic-term";
|
||||
"Mod+E".action.spawn = "cosmic-files";
|
||||
|
||||
"Mod+A".action.spawn-sh = "noctalia msg panel-toggle launcher";
|
||||
"Mod+V".action.spawn-sh = "noctalia msg panel-toggle clipboard";
|
||||
"Mod+N".action.spawn-sh = "noctalia msg panel-toggle control-center";
|
||||
"Mod+C".action.spawn-sh = "noctalia msg panel-toggle alexander/mimir:chat";
|
||||
"Mod+W".action.spawn-sh = "noctalia msg panel-toggle wallpaper";
|
||||
|
||||
"Mod+Comma".action.spawn-sh = "noctalia msg settings-toggle";
|
||||
"Control+Alt+Delete".action.spawn-sh = "noctalia msg panel-toggle session";
|
||||
|
||||
"XF86AudioRaiseVolume".action.spawn-sh = "noctalia msg volume-up";
|
||||
"XF86AudioLowerVolume".action.spawn-sh = "noctalia msg volume-down";
|
||||
"XF86AudioMute".action.spawn-sh = "noctalia msg volume-mute";
|
||||
"XF86MonBrightnessUp".action.spawn-sh = "noctalia msg brightness-up";
|
||||
"XF86MonBrightnessDown".action.spawn-sh = "noctalia msg brightness-down";
|
||||
# Media
|
||||
|
||||
"XF86AudioPlay".action.spawn = [ "playerctl" "play-pause" ];
|
||||
"XF86AudioNext".action.spawn = [ "playerctl" "next" ];
|
||||
"XF86AudioPrev".action.spawn = [ "playerctl" "previous" ];
|
||||
"XF86AudioStop".action.spawn = [ "playerctl" "stop" ];
|
||||
"Mod+W".action.spawn-sh = "noctalia msg panel-toggle wallpaper";
|
||||
# Window management
|
||||
|
||||
"Mod+Q".action.close-window = {};
|
||||
"Mod+Space".action.toggle-window-floating = {};
|
||||
"Mod+Shift+Space".action.switch-focus-between-floating-and-tiling = {};
|
||||
"Mod+F".action.switch-preset-column-width = {};
|
||||
"Mod+Shift+F".action.fullscreen-window = {};
|
||||
# Focus
|
||||
|
||||
"Mod+Left".action.focus-column-left = {};
|
||||
"Mod+Down".action.focus-window-or-workspace-down = {};
|
||||
"Mod+Up".action.focus-window-or-workspace-up = {};
|
||||
"Mod+Right".action.focus-column-right = {};
|
||||
# Move windows
|
||||
|
||||
"Mod+Shift+Left".action.set-column-width = "-10%";
|
||||
"Mod+Shift+Right".action.set-column-width = "+10%";
|
||||
"Mod+Shift+Up".action.set-window-height = "+10%";
|
||||
@@ -112,9 +121,9 @@
|
||||
"Mod+Control+L".action.consume-or-expel-window-right = {};
|
||||
"Mod+Control+K".action.move-window-up = {};
|
||||
"Mod+Control+J".action.move-window-down = {};
|
||||
# Screenshots
|
||||
|
||||
"Mod+Shift+S".action.spawn = [ "noctalia" "msg" "screenshot-region" ];
|
||||
# Workspaces
|
||||
|
||||
"Mod+1".action.focus-workspace = 1;
|
||||
"Mod+2".action.focus-workspace = 2;
|
||||
"Mod+3".action.focus-workspace = 3;
|
||||
@@ -136,6 +145,15 @@
|
||||
"Mod+Shift+8".action.move-window-to-workspace = 8;
|
||||
"Mod+Shift+9".action.move-window-to-workspace = 9;
|
||||
"Mod+Shift+0".action.move-window-to-workspace = 10;
|
||||
|
||||
"Alt+Tab".action.spawn-sh = "noctalia msg window-switcher";
|
||||
|
||||
"Mod+WheelScrollUp".action.focus-workspace-up = {};
|
||||
"Mod+WheelScrollDown".action.focus-workspace-down = {};
|
||||
"Mod+Shift+WheelScrollDown".action.focus-column-right = {};
|
||||
"Mod+Shift+WheelScrollUp".action.focus-column-left = {};
|
||||
"Mod+Ctrl+Shift+WheelScrollDown".action.move-column-right = {};
|
||||
"Mod+Ctrl+Shift+WheelScrollUp".action.move-column-left = {};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -8,6 +8,8 @@ in {
|
||||
|
||||
catppuccin = {
|
||||
enable = true;
|
||||
autoEnable = true;
|
||||
|
||||
flavor = flavor;
|
||||
accent = accent;
|
||||
|
||||
@@ -21,6 +23,8 @@ in {
|
||||
|
||||
catppuccin = {
|
||||
enable = true;
|
||||
autoEnable = true;
|
||||
|
||||
flavor = flavor;
|
||||
accent = accent;
|
||||
|
||||
|
||||
@@ -26,7 +26,8 @@
|
||||
|
||||
stylix = {
|
||||
enable = true;
|
||||
autoEnable = false;
|
||||
autoEnable = true;
|
||||
|
||||
polarity = "dark";
|
||||
|
||||
base16Scheme = catppuccin;
|
||||
@@ -40,8 +41,10 @@
|
||||
vesktop.enable = true;
|
||||
gnome.enable = true;
|
||||
gtk.enable = true;
|
||||
gtk.flatpakSupport.enable = true;
|
||||
firefox.enable = true;
|
||||
fish.enable = true;
|
||||
opencode.enable = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user