removing unneccessary use-modules

This change in the architecture allows for more code reuse.
The base.scm file is for everything that is shared between
machines. The syl.scm and kaladin.scm files are for specific changes
to those systems.
This commit is contained in:
Chris Cochru 2023-06-27 16:37:59 -05:00
parent e432241a74
commit 482c123e21
2 changed files with 0 additions and 11 deletions

View file

@ -25,12 +25,6 @@
#:use-module (nongnu packages linux) #:use-module (nongnu packages linux)
#:use-module (nongnu system linux-initrd)) #:use-module (nongnu system linux-initrd))
(use-service-modules cups desktop networking ssh xorg avahi
admin base nix dbus pm audio virtualization sysctl)
(use-package-modules nfs certs shells ssh linux bash emacs gnome networking wm fonts glib libusb
cups freedesktop file-systems version-control package-management)
(operating-system (operating-system
(inherit base-operating-system) (inherit base-operating-system)
(host-name "kaladin") (host-name "kaladin")

View file

@ -21,11 +21,6 @@
#:use-module (nongnu packages linux) #:use-module (nongnu packages linux)
#:use-module (nongnu system linux-initrd)) #:use-module (nongnu system linux-initrd))
(use-service-modules cups desktop networking ssh xorg avahi
admin base nix dbus pm audio virtualization sysctl)
(use-package-modules nfs certs shells ssh linux bash emacs gnome networking wm fonts glib libusb
cups freedesktop file-systems version-control package-management)
(operating-system (operating-system
(inherit base-operating-system) (inherit base-operating-system)
(host-name "syl") (host-name "syl")