Fixed channels.scm

This commit is contained in:
Aleksandr Lebedev 2025-11-05 21:12:43 +01:00
parent 95794c3bf6
commit bd1f1ee81e
2 changed files with 12 additions and 5 deletions

View file

@ -1,4 +1,9 @@
(cons (channel
(name 'quickshell)
(url "https://git.outfoxxed.me/quickshell/quickshell"))
%default-channels)
(list (channel
(name 'guix)
(url "https://git.guix.gnu.org/guix.git")
(branch "master")
(introduction
(make-channel-introduction
"9edb3f66fd807b096b48283debdcddccfea34bad"
(openpgp-fingerprint
"BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA")))))

View file

@ -69,7 +69,9 @@
(aliases '(("gs" . "git status")
("system-reconfigure" . "sudo -E guix time-machine -C ~/dotfiles/guix-config/channels-lock.scm -- system -L ~/dotfiles reconfigure ~/dotfiles/guix-config/system/$(hostname).scm")
("home-reconfigure" . "guix time-machine -C ~/dotfiles/guix-config/channels-lock.scm -- home -L ~/dotfiles reconfigure ~/dotfiles/guix-config/home/workstation.scm")
("guix-pull" . "guix pull --channels=~/dotfiles/guix-system/channels.scm; guix describe --format=channels > ~/dotfiles/guix-system/channels-lock.scm")))))
("guix-pull" . "guix pull --channels=$HOME/dotfiles/guix-config/channels.scm; guix describe --format=channels > $HOME/dotfiles/guix-config/channels-lock.scm")
("reconfigure" . "system-reconfigure && home-reconfigure")
("guix-full-upgrade" . "guix-pull && reconfigure")))))
(service home-dotfiles-service-type
(home-dotfiles-configuration
(directories '("../../files")))))