initial omen config

This commit is contained in:
John Lancaster
2026-06-11 08:28:49 -05:00
parent b7f5474893
commit 24eeb5967c
6 changed files with 208 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
{ self, inputs, ... }: {
perSystem = { pkgs, ... }: {
packages.myNoctalia = inputs.wrapper-modules.wrappers.noctalia-shell.wrap {
inherit pkgs; # THIS PART IS VERY IMPORTAINT, I FORGOT IT IN THE VIDEO!!!
settings =
(builtins.fromJSON
(builtins.readFile ./noctalia.json)).settings;
};
};
}