niri: switch to dms
This commit is contained in:
parent
35e4cc958d
commit
9152e70cc2
10 changed files with 524 additions and 78 deletions
40
modules/desktop/addons/dms/default.nix
Normal file
40
modules/desktop/addons/dms/default.nix
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
flake.modules.homeManager.cholli =
|
||||
{
|
||||
inputs,
|
||||
lib,
|
||||
osConfig,
|
||||
...
|
||||
}:
|
||||
let
|
||||
picture-path = "/home/cholli/Pictures/firewatch.jpg";
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
inputs.dankMaterialShell.homeModules.dankMaterialShell.default
|
||||
inputs.dankMaterialShell.homeModules.dankMaterialShell.niri
|
||||
];
|
||||
|
||||
config = lib.mkIf osConfig.programs.niri.enable {
|
||||
home.file = {
|
||||
".config/DankMaterialShell/settings.json".source = ./settings.json;
|
||||
".config/DankMaterialShell/clsettings.json".source = ./clsettings.json;
|
||||
# https://www.reddit.com/r/WidescreenWallpaper/comments/13hib3t/purple_firewatch_3840x1620/
|
||||
"Pictures/firewatch.jpg".source = ../firewatch.jpg;
|
||||
};
|
||||
|
||||
programs.dankMaterialShell = {
|
||||
enable = true;
|
||||
niri = {
|
||||
enableKeybinds = true;
|
||||
enableSpawn = true;
|
||||
};
|
||||
|
||||
enableVPN = false;
|
||||
enableDynamicTheming = false;
|
||||
enableAudioWavelength = false;
|
||||
enableCalendarEvents = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue