From bd1f1ee81e26288a60d8d19b924b349a93871438 Mon Sep 17 00:00:00 2001 From: Aleksandr Lebedev Date: Wed, 5 Nov 2025 21:12:43 +0100 Subject: [PATCH] Fixed channels.scm --- guix-config/channels.scm | 13 +++++++++---- guix-config/home/workstation.scm | 4 +++- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/guix-config/channels.scm b/guix-config/channels.scm index ae76007..a1ed13b 100644 --- a/guix-config/channels.scm +++ b/guix-config/channels.scm @@ -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"))))) diff --git a/guix-config/home/workstation.scm b/guix-config/home/workstation.scm index 30cc726..2f44ae6 100644 --- a/guix-config/home/workstation.scm +++ b/guix-config/home/workstation.scm @@ -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")))))