mirror of https://codeberg.org/anemofilia/zero
12 lines
306 B
Scheme
12 lines
306 B
Scheme
(define-module (buer kernel)
|
|
#:use-module (guix gexp)
|
|
#:use-module (gnu packages linux))
|
|
|
|
(define-public linux-libre
|
|
(customize-linux
|
|
#:name "buer-linux-libre"
|
|
#:linux linux-libre-6.10
|
|
#:source linux-libre-6.10-source
|
|
#:defconfig (local-file "defconfig")
|
|
#:extra-version "buer"))
|