fixed opencode pasting on oren
This commit is contained in:
parent
de6ce3c7db
commit
e2382fa1a9
6 changed files with 96 additions and 41 deletions
|
|
@ -107,18 +107,6 @@ in
|
|||
};
|
||||
services.desktopManager.plasma6.enable = true;
|
||||
|
||||
# Portals
|
||||
xdg.portal = {
|
||||
enable = true;
|
||||
extraPortals = [
|
||||
pkgs.xdg-desktop-portal-kde
|
||||
pkgs.xdg-desktop-portal-gtk
|
||||
];
|
||||
config.common.default = [
|
||||
"kde"
|
||||
"gtk"
|
||||
];
|
||||
};
|
||||
|
||||
# Audio / IPC
|
||||
services.pipewire = {
|
||||
|
|
|
|||
|
|
@ -166,7 +166,7 @@ in
|
|||
lengthMode = "fit";
|
||||
height = 24;
|
||||
opacity = "translucent"; # "adaptive" | "translucent" | "opaque"
|
||||
floating = false;
|
||||
floating = true;
|
||||
hiding = "normalpanel";
|
||||
screen = "all";
|
||||
widgets = [
|
||||
|
|
@ -191,7 +191,7 @@ in
|
|||
lengthMode = "fit";
|
||||
height = 24;
|
||||
opacity = "translucent"; # "adaptive" | "translucent" | "opaque"
|
||||
floating = false;
|
||||
floating = true;
|
||||
hiding = "normalpanel";
|
||||
screen = "all";
|
||||
widgets = [
|
||||
|
|
@ -204,7 +204,7 @@ in
|
|||
lengthMode = "fit";
|
||||
height = 24;
|
||||
opacity = "translucent"; # "adaptive" | "translucent" | "opaque"
|
||||
floating = false;
|
||||
floating = true;
|
||||
hiding = "normalpanel";
|
||||
screen = "all";
|
||||
widgets = [
|
||||
|
|
|
|||
27
flakes/opencode/flake.nix
Normal file
27
flakes/opencode/flake.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
inputs = {
|
||||
opencode.url = "github:sst/opencode";
|
||||
};
|
||||
|
||||
outputs =
|
||||
{ opencode, ... }:
|
||||
{
|
||||
nixosModules = {
|
||||
default =
|
||||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
environment.systemPackages = [
|
||||
opencode.packages.${pkgs.system}.default
|
||||
];
|
||||
|
||||
environment.shellAliases = {
|
||||
"oc" = "all_proxy='' http_proxy='' https_proxy='' opencode";
|
||||
"occ" = "oc -c";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue