refactor *started*

This commit is contained in:
martyTF 2026-03-30 22:03:03 +02:00
parent d0413cb830
commit db2103a37d
103 changed files with 1008 additions and 786 deletions

View file

@ -0,0 +1,13 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [
./noctalia.nix
./walker.nix
];
}

View file

@ -0,0 +1,19 @@
{
config,
pkgs,
inputs,
lib,
osConfig,
...
}:
{
config = lib.mkIf osConfig.desktop.shell.noctalia.enable {
};
imports = lib.mkIf osConfig.desktop.shell.noctalia.enable [
inputs.noctalia.homeModules.default
]
}

View file

@ -0,0 +1,26 @@
{
config,
pkgs,
inputs,
lib,
osConfig,
...
}:
{
config = lib.mkIf osConfig.desktop.shell.walker.enable {
programs = {
walker = {
enable = true;
runAsService = true;
config = {
theme = "noctalia";
};
};
};
};
imports = lib.mkIf osConfig.desktop.shell.walker.enable [
inputs.walker.homeManagerModules.default
]
}