diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-09-28 19:13:02 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-09-28 19:13:02 +0200 |
commit | a86a725f7048138e58b92312af57c5debbeb2643 (patch) | |
tree | 66667fb815495f5c080aeec09f943938085521a1 /systems | |
parent | 5ec2580a2b13c072f2e90c6a24ade05daf37d852 (diff) |
fix(ayase): expose operating-system function in a simple variable
Diffstat (limited to 'systems')
-rw-r--r-- | systems/ayase.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/systems/ayase.scm b/systems/ayase.scm index 1adcac4..703fcd3 100644 --- a/systems/ayase.scm +++ b/systems/ayase.scm @@ -141,7 +141,7 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -(define-public (operating-system*) +(define (operating-system*) (use-modules (nongnu packages linux) (nongnu system linux-initrd) (gnu system keyboard) @@ -163,4 +163,7 @@ (services services) (sudoers-file %sudoers-specification*))) -(operating-system*) +(define-public operating-system* + (operating-system*)) + +operating-system* |