.
This commit is contained in:
parent
b7ff2fa3d1
commit
775b01b3fc
2 changed files with 12 additions and 2 deletions
|
@ -777,6 +777,7 @@ Point must be at the beginning of balanced expression (sexp)."
|
||||||
:init
|
:init
|
||||||
(progn (unload-feature 'transient t)
|
(progn (unload-feature 'transient t)
|
||||||
(require 'transient)))
|
(require 'transient)))
|
||||||
|
|
||||||
;; To fix this, you have to add this to your init file:
|
;; To fix this, you have to add this to your init file:
|
||||||
;; (setq package-install-upgrade-built-in t)
|
;; (setq package-install-upgrade-built-in t)
|
||||||
;; You must also make sure the updated version is loaded, by evaluating the `progn` form below.
|
;; You must also make sure the updated version is loaded, by evaluating the `progn` form below.
|
||||||
|
@ -797,6 +798,13 @@ Point must be at the beginning of balanced expression (sexp)."
|
||||||
|
|
||||||
(use-package forge
|
(use-package forge
|
||||||
:after magit
|
:after magit
|
||||||
|
:custom
|
||||||
|
(forge-alist (("github.com" "api.github.com" "github.com" forge-github-repository)
|
||||||
|
("gitlab.com" "gitlab.com/api/v4" "gitlab.com" forge-gitlab-repository)
|
||||||
|
("dev.bevuta.com" "dev.bevuta.com/api/v4" "dev.bevuta.com" forge-gitlab-repository)
|
||||||
|
("codeberg.org" "codeberg.org/api/v1" "codeberg.org" forge-gitea-repository)
|
||||||
|
("gitea.lyrion.ch:7920" "gitea.oyrion.ch/api/v1" "gitea.lyrion.ch" forge-gitea-repository)
|
||||||
|
("git.sr.ht" nil "git.sr.ht" forge-srht-repository)))
|
||||||
:config
|
:config
|
||||||
(advice-add 'magit :after (lambda (&rest _args)
|
(advice-add 'magit :after (lambda (&rest _args)
|
||||||
(call-interactively #'forge-pull))))
|
(call-interactively #'forge-pull))))
|
||||||
|
|
6
home.nix
6
home.nix
|
@ -25,6 +25,7 @@ args@{ config, pkgs, split-monitor-workspaces, flatpaks, ... }:
|
||||||
git-cola
|
git-cola
|
||||||
git-doc
|
git-doc
|
||||||
git-filter-repo
|
git-filter-repo
|
||||||
|
gparted
|
||||||
grim
|
grim
|
||||||
home-manager
|
home-manager
|
||||||
hyprcursor
|
hyprcursor
|
||||||
|
@ -37,8 +38,8 @@ args@{ config, pkgs, split-monitor-workspaces, flatpaks, ... }:
|
||||||
kdePackages.ark
|
kdePackages.ark
|
||||||
kdePackages.breeze-icons
|
kdePackages.breeze-icons
|
||||||
kdePackages.dolphin
|
kdePackages.dolphin
|
||||||
kdePackages.kdesu
|
# kdePackages.kdesu
|
||||||
kdePackages.kde-cli-tools
|
# kdePackages.kde-cli-tools
|
||||||
kdePackages.kitinerary
|
kdePackages.kitinerary
|
||||||
kdePackages.ksshaskpass
|
kdePackages.ksshaskpass
|
||||||
kdePackages.okular
|
kdePackages.okular
|
||||||
|
@ -47,6 +48,7 @@ args@{ config, pkgs, split-monitor-workspaces, flatpaks, ... }:
|
||||||
kdePackages.qtwayland
|
kdePackages.qtwayland
|
||||||
kdePackages.wayland
|
kdePackages.wayland
|
||||||
kdePackages.wayland-protocols
|
kdePackages.wayland-protocols
|
||||||
|
libsForQt5.kde-cli-tools
|
||||||
libuuid
|
libuuid
|
||||||
lm_sensors
|
lm_sensors
|
||||||
gnumake
|
gnumake
|
||||||
|
|
Loading…
Reference in a new issue