push
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
{ inputs, ... }: {
|
||||
den.aspects.niri = {
|
||||
nixos = { pkgs, lib, ... }: {
|
||||
nixos = { pkgs, ... }: {
|
||||
services.displayManager = {
|
||||
sessionPackages = [ pkgs.niri ];
|
||||
};
|
||||
};
|
||||
|
||||
homeManager = { pkgs, lib, ... }: {
|
||||
homeManager = { pkgs, ... }: {
|
||||
imports = [ inputs.niri.homeModules.niri ];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
@@ -28,22 +28,29 @@
|
||||
|
||||
input.touchpad = {
|
||||
click-method = "clickfinger";
|
||||
dwt = true;
|
||||
};
|
||||
|
||||
overview.backdrop-color = "#11111b";
|
||||
|
||||
layout = {
|
||||
gaps = 10;
|
||||
border.enable = false;
|
||||
|
||||
focus-ring = {
|
||||
enable = true;
|
||||
width = 2;
|
||||
active.color = "#cba6f7";
|
||||
};
|
||||
|
||||
preset-column-widths = [
|
||||
{ proportion = 0.50; }
|
||||
{ proportion = 1.00; }
|
||||
];
|
||||
|
||||
default-column-width = { proportion = 1.00; };
|
||||
};
|
||||
|
||||
window-rules = [
|
||||
{
|
||||
geometry-corner-radius = {
|
||||
@@ -52,26 +59,33 @@
|
||||
bottom-left = 12.0;
|
||||
bottom-right = 12.0;
|
||||
};
|
||||
|
||||
clip-to-geometry = true;
|
||||
draw-border-with-background = true;
|
||||
}
|
||||
|
||||
{
|
||||
matches = [
|
||||
{ app-id = "dev.noctalia.Noctalia"; }
|
||||
];
|
||||
|
||||
open-floating = true;
|
||||
|
||||
default-column-width = {
|
||||
fixed = 1080;
|
||||
};
|
||||
|
||||
default-window-height = {
|
||||
fixed = 920;
|
||||
};
|
||||
|
||||
geometry-corner-radius = {
|
||||
top-left = 12.0;
|
||||
top-right = 12.0;
|
||||
bottom-left = 12.0;
|
||||
bottom-right = 12.0;
|
||||
};
|
||||
|
||||
clip-to-geometry = true;
|
||||
draw-border-with-background = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user