summaryrefslogtreecommitdiff
path: root/users/uid1000-test-channels.scm
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2025-10-10 14:54:42 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2025-10-10 15:10:35 +0200
commit73c26f632505485e3b1caf550cab6acac7da9669 (patch)
tree5ef59b571d9f600850a3a33470d263c6a9d3230a /users/uid1000-test-channels.scm
parent60a9c0085dc399b982f2ee883c87aa95876e457e (diff)
users: define test channels for id1000HEADtestmaster
Diffstat (limited to 'users/uid1000-test-channels.scm')
-rw-r--r--users/uid1000-test-channels.scm41
1 files changed, 41 insertions, 0 deletions
diff --git a/users/uid1000-test-channels.scm b/users/uid1000-test-channels.scm
new file mode 100644
index 0000000..b2c3052
--- /dev/null
+++ b/users/uid1000-test-channels.scm
@@ -0,0 +1,41 @@
+(define-module (users uid1000-test-channels)
+ #:use-module ( (guix channels)
+ #:prefix guix:channels:)
+ #:use-module ( (sovereign channels)
+ #:prefix sovereign:channels:))
+
+(define test-deployment-channel
+ (guix:channels:channel
+ (inherit sovereign:channels:deployment-channel)
+ (url "file:///home/marek/Szablony/deployment")
+ (branch "test")))
+
+(define test-guix-channel
+ (guix:channels:channel
+ (inherit sovereign:channels:default-guix-channel)
+ (url "file:///home/marek/Szablony/guix")
+ (branch "test")))
+
+(define test-guix-rust-past-crates-channel
+ (guix:channels:channel
+ (inherit sovereign:channels:guix-rust-past-crates-channel)
+ (url "file:///home/marek/Szablony/guix-rust-past-crates")
+ (branch "test")))
+
+(define test-nonguix-channel
+ (guix:channels:channel
+ (inherit sovereign:channels:nonguix-channel)
+ (url "file:///home/marek/Szablony/nonguix")
+ (branch "test")))
+
+(define test-sovereign-channel
+ (guix:channels:channel
+ (inherit sovereign:channels:sovereign-channel)
+ (url "file:///home/marek/Szablony/sovereign")
+ (branch "test")))
+
+(list test-deployment-channel
+ test-guix-channel
+ test-guix-rust-past-crates-channel
+ test-nonguix-channel
+ test-sovereign-channel)