* Rename `nooctalia-plugins` to `noctalia-plugins` in host modules and plugin definitions * Update Hyprland keybindings and exec-once to use the new `noctalia` commands * Add `stylixImage` option and enable pointer cursor in `modules/core/user.nix` * Introduce `modules/home/nixpkgs.nix` to allow unfree packages and insecure Electron * Add full Noctalia configuration module with settings for audio, bar, calendar, location, notifications, plugins, shell, wallpaper, and widgets * Enable `noctalia` in `modules/home/stylix.nix` and replace legacy `noctalia-shell` imports in `modules/home/default.nix`
107 lines
1.7 KiB
Nix
107 lines
1.7 KiB
Nix
{
|
|
host,
|
|
shell,
|
|
...
|
|
}: {
|
|
stylix.targets = {
|
|
librewolf = {
|
|
profileNames = ["${host}"];
|
|
enable = true;
|
|
firefoxGnomeTheme.enable = true;
|
|
fonts.enable = true;
|
|
inputs.enable = true;
|
|
};
|
|
|
|
hyprland = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
hyprpaper.enable = true;
|
|
image.enable = true;
|
|
};
|
|
|
|
vscode.enable = false;
|
|
|
|
zed.enable = false;
|
|
|
|
vesktop = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
fonts.enable = true;
|
|
};
|
|
|
|
noctalia-shell.enable = true;
|
|
noctalia.enable = true;
|
|
|
|
gtk = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
flatpakSupport.enable = true;
|
|
fonts.enable = true;
|
|
};
|
|
|
|
qt = {
|
|
enable = true;
|
|
platform = "qtct";
|
|
};
|
|
|
|
fish = {
|
|
enable =
|
|
if shell == "fish"
|
|
then true
|
|
else false;
|
|
colors.enable = true;
|
|
inputs.enable = true;
|
|
};
|
|
|
|
starship = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
};
|
|
|
|
fzf = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
};
|
|
|
|
bat = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
};
|
|
|
|
anki = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
};
|
|
|
|
btop = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
opacity.enable = true;
|
|
};
|
|
|
|
kitty = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
fonts.enable = true;
|
|
inputs.enable = true;
|
|
opacity.enable = true;
|
|
variant256Colors = true;
|
|
};
|
|
|
|
opencode = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
};
|
|
|
|
obsidian = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
fonts.enable = true;
|
|
polarity.enable = true;
|
|
vaultNames = [
|
|
"BoM"
|
|
];
|
|
};
|
|
};
|
|
}
|