again
This commit is contained in:
47
modules/home/niri.nix
Normal file
47
modules/home/niri.nix
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
{ config, pkgs, inputs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
inputs.dms.homeModules.dank-material-shell
|
||||||
|
inputs.dms.homeModules.niri
|
||||||
|
];
|
||||||
|
|
||||||
|
# DankMaterialShell
|
||||||
|
programs.dank-material-shell = {
|
||||||
|
enable = true;
|
||||||
|
enableSystemMonitoring = true;
|
||||||
|
dgop.package = inputs.dgop.packages.${pkgs.system}.default;
|
||||||
|
enableDynamicTheming = true;
|
||||||
|
enableClipboardPaste = true;
|
||||||
|
|
||||||
|
niri = {
|
||||||
|
enableKeybinds = false;
|
||||||
|
enableSpawn = true;
|
||||||
|
includes = {
|
||||||
|
enable = true;
|
||||||
|
override = true;
|
||||||
|
originalFileName = "hm";
|
||||||
|
filesToInclude = [
|
||||||
|
"alttab"
|
||||||
|
"binds"
|
||||||
|
"colors"
|
||||||
|
"layout"
|
||||||
|
"outputs"
|
||||||
|
"wpblur"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
theme = "dark";
|
||||||
|
dynamicTheming = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# Mouse settings
|
||||||
|
home.pointerCursor = {
|
||||||
|
name = "Adwaita";
|
||||||
|
package = pkgs.adwaita-icon-theme;
|
||||||
|
size = 24;
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user