Update flake to unstable, add chromium/opencode modules, update emacs config
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
isEnabled =
|
||||
config.azos.chromium.enable;
|
||||
in {
|
||||
options.azos.chromium.enable = lib.mkOption {
|
||||
default = true;
|
||||
example = true;
|
||||
type = lib.types.bool;
|
||||
};
|
||||
|
||||
config = lib.mkIf isEnabled {
|
||||
home.packages = with pkgs; [
|
||||
chromium
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -18,7 +18,9 @@
|
||||
./gimp.nix
|
||||
# ./printing.nix
|
||||
./libreoffice.nix
|
||||
./chromium.nix
|
||||
./hyprland-suite.nix
|
||||
# ./gnuradio.nix
|
||||
./opencode.nix
|
||||
];
|
||||
}
|
||||
|
||||
Executable
+21
@@ -0,0 +1,21 @@
|
||||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
isEnabled =
|
||||
config.azos.opencode.enable;
|
||||
in {
|
||||
options.azos.opencode.enable = lib.mkOption {
|
||||
default = true;
|
||||
example = true;
|
||||
type = lib.types.bool;
|
||||
};
|
||||
|
||||
config = lib.mkIf isEnabled {
|
||||
home.packages = with pkgs; [
|
||||
opencode
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -17,7 +17,7 @@ in {
|
||||
home.packages = with pkgs; [
|
||||
reaper
|
||||
helm #TODO this synth had better work
|
||||
surge
|
||||
# surge
|
||||
lsp-plugins
|
||||
vital
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user