guix-dotfiles/modules/ryan-config/base-system.scm

267 lines
13 KiB
Scheme
Raw Permalink Normal View History

2023-05-19 04:27:16 +00:00
(define-module (ryan-config base-system)
#:use-module (gnu)
#:use-module (nongnu packages linux)
#:use-module (gnu system setuid)
#:use-module (gnu packages admin)
#:use-module (gnu packages avahi)
2023-05-19 04:27:16 +00:00
#:use-module (guix packages)
#:use-module (gnu packages shells)
#:use-module (guix build-system trivial)
#:use-module (guix licenses)
#:use-module (gnu packages tls)
2024-02-09 21:20:47 +00:00
#:use-module (gnu packages spice)
2023-05-19 04:27:16 +00:00
#:use-module (srfi srfi-1)
#:use-module (ryan-packages freedesktop)
#:use-module (ryan-packages wm)
2023-09-07 18:45:05 +00:00
#:use-module (ryan-packages virtualization)
#:use-module (ryan-packages linux)
#:use-module (ryan-packages networking)
#:use-module (rosenthal packages wm)
2024-05-21 06:22:10 +00:00
#:use-module (rosenthal services networking)
2023-05-19 04:27:16 +00:00
#:use-module (gnu packages security-token)
#:use-module (gnu services security-token)
#:use-module (gnu services cups)
#:use-module (gnu services desktop)
#:use-module (gnu services networking)
#:use-module (gnu services xorg)
#:use-module (gnu services ssh)
#:use-module (gnu services nix)
#:use-module (gnu services sound)
#:use-module (gnu services docker)
#:use-module (gnu services avahi)
2024-02-09 21:20:47 +00:00
#:use-module (gnu services dbus)
2023-05-19 04:27:16 +00:00
#:use-module (gnu services virtualization))
2023-05-19 04:09:31 +00:00
; Define package that installs my root ca public keys
(define my-ca-certs
(package
(name "my-ca-certs")
(version "1")
(source (local-file "./CACerts"
#:recursive? #t))
(build-system trivial-build-system)
(license mpl2.0)
(home-page "https://rschanz.org")
(arguments
`(#:modules
((guix build utils))
#:builder
(begin
(use-modules (guix build utils)
(srfi srfi-1)
(srfi srfi-26)
(ice-9 ftw))
(let* ((ca-certificates (assoc-ref %build-inputs "source"))
(crt-suffix ".crt")
(is-certificate? (cut string-suffix? crt-suffix <>))
(certificates (filter is-certificate?
(scandir ca-certificates)))
(out (assoc-ref %outputs "out"))
(certificate-directory (string-append out "/etc/ssl/certs"))
(openssl (string-append (assoc-ref %build-inputs "openssl") "/bin/openssl")))
(mkdir-p certificate-directory)
(for-each
(lambda (cert)
(invoke
openssl "x509"
"-in" (string-append ca-certificates "/" cert)
"-outform" "PEM"
"-out" (string-append certificate-directory "/" cert ".pem")))
certificates)
#t))))
(native-inputs
(list openssl))
(synopsis "My CA Certs")
(description synopsis)))
; Re-define the base packages to remove sudo
(define %my-base-packages
(remove (lambda (package)
(member (package-name package)
(list "sudo" "nano")))
%base-packages ))
(define %backlight-udev-rule
(udev-rule
"90-backlight.rules"
(string-append "ACTION==\"add\", SUBSYSTEM==\"backlight\", "
"RUN+=\"/run/current-system/profile/bin/chgrp video /sys/class/backlight/%k/brightness\""
"\n"
"ACTION==\"add\", SUBSYSTEM==\"backlight\", "
"RUN+=\"/run/current-system/profile/bin/chmod g+w /sys/class/backlight/%k/brightness\"")))
2024-03-18 05:00:08 +00:00
(define %flipper-udev-rule
(udev-rule
"42-flipperzero.rules"
(string-append "SUBSYSTEMS==\"usb\", ATTRS{idVendor}==\"0483\", ATTRS{idProduct}==\"5740\", ATTRS{manufacturer}==\"Flipper Devices Inc.\", TAG+=\"uaccess\""
"\n"
"SUBSYSTEMS==\"usb\", ATTRS{idVendor}==\"0483\", ATTRS{idProduct}==\"df11\", ATTRS{manufacturer}==\"STMicroelectronics\", TAG+=\"uaccess\""
"\n"
"SUBSYSTEMS==\"usb\", ATTRS{idVendor}==\"303a\", ATTRS{idProduct}==\"40??\", ATTRS{manufacturer}==\"Flipper Devices Inc.\", TAG+=\"uaccess\"")))
2023-05-19 04:27:16 +00:00
(define-public base-operating-system
2023-05-19 05:24:44 +00:00
(operating-system
2024-06-20 03:20:16 +00:00
(kernel linux)
2023-05-19 05:24:44 +00:00
(firmware (list linux-firmware))
(locale "en_US.utf8")
(timezone "America/New_York")
(keyboard-layout (keyboard-layout "us"))
(host-name "ThisWillChange")
2023-05-19 04:09:31 +00:00
2023-05-19 05:24:44 +00:00
;; The list of user accounts ('root' is implicit).
(users (cons* (user-account
(name "ryan")
(comment "Ryan")
(group "users")
2024-04-13 03:06:03 +00:00
(shell (file-append fish "/bin/fish"))
2023-05-19 05:24:44 +00:00
(home-directory "/home/ryan")
2024-03-19 13:51:55 +00:00
(supplementary-groups '("wheel" "netdev" "audio" "video" "lp" "plugdev" "docker" "libvirt" "kvm" "dialout")))
2023-05-19 05:24:44 +00:00
%base-user-accounts))
2023-05-19 04:09:31 +00:00
2023-05-19 05:24:44 +00:00
;; Packages installed system-wide. Users can also install packages
;; under their own account: use 'guix search KEYWORD' to search
;; for packages and 'guix install PACKAGE' to install a package.
(packages (append (map specification->package (list "sway"
"hyprland"
2023-05-19 05:24:44 +00:00
"swaybg"
2024-03-20 05:21:39 +00:00
;"swayidle"
2023-05-19 05:24:44 +00:00
;"swaylock-effects"
"fuzzel"
"foot"
2023-05-19 05:24:44 +00:00
"pinentry-qt"
"adwaita-icon-theme"
"hicolor-icon-theme"
"git"
;"waybar"
2023-05-19 05:24:44 +00:00
"gnupg"
"light"
"avahi"
2023-05-19 05:24:44 +00:00
"mako"
"grim"
"grimblast"
2023-05-19 05:24:44 +00:00
"slurp"
"wl-clipboard"
;"bluez"
;"blueman"
2023-05-19 05:24:44 +00:00
"ldacbt"
"libfreeaptx"
"libfdk"
"opendoas"
;"xdg-desktop-portal-wlr"
"xdg-desktop-portal"
"xdg-desktop-portal-gtk"
"v4l2loopback-linux-module"
2023-05-19 05:24:44 +00:00
"pipewire"
"docker"
2023-09-07 18:45:05 +00:00
;"libvirt" ;New version inherited from service
;"virt-manager"
"dconf"
2023-05-19 05:24:44 +00:00
"wireplumber"
"wireshark"
2024-09-10 19:34:53 +00:00
"webkitgtk-with-libsoup2" ; Needed for Go wails development
2023-05-19 05:24:44 +00:00
"zsh"))
2024-09-03 18:09:35 +00:00
(list my-ca-certs swaylock-effects-new xdg-desktop-portal-hyprland-ryan virt-manager-ovmf bluez-ryan blueman-ryan swayidle-new waybar-new)
2023-05-19 05:24:44 +00:00
%my-base-packages ))
2023-05-19 04:09:31 +00:00
2023-05-19 05:24:44 +00:00
;; Below is the list of system services. To search for available
;; services, run 'guix system search KEYWORD' in a terminal.
(services
(append (list
2023-05-19 04:09:31 +00:00
2023-05-19 05:24:44 +00:00
;; To configure OpenSSH, pass an 'openssh-configuration'
;; record as a second argument to 'service' below.
(service openssh-service-type)
(service pcscd-service-type)
(service cups-service-type
(cups-configuration
(web-interface? #t)))
;; Avahi is only present for CUPS to support "automagic" printing
(service avahi-service-type
(avahi-configuration
(publish? #f) ;; do not advertise this machine
(publish-workstation? #f))) ;; do not advertise, I want this to be as silent as possible
2023-05-19 05:24:44 +00:00
(service docker-service-type)
2024-05-21 06:22:10 +00:00
; Tailscale daemon from rosenthal
(service tailscale-service-type) ; TODO: Add BIRD socket
2023-05-19 05:24:44 +00:00
(service nix-service-type)
(service libvirt-service-type
(libvirt-configuration
(libvirt libvirt-ovmf)
2023-05-19 05:24:44 +00:00
(unix-sock-group "libvirt")))
(service virtlog-service-type)
2024-02-09 21:20:47 +00:00
(simple-service 'spice-polkit polkit-service-type (list spice-gtk))
(simple-service 'hwdb-creation etc-service-type (list `("udev-here-oneoneone" ,(plain-file "issue" "test\n"))))
(service bluetooth-service-type
(bluetooth-configuration
(bluez bluez-ryan)
2023-09-08 05:02:42 +00:00
(experimental #t)
(fast-connectable? #t)))
2023-05-19 05:24:44 +00:00
(udev-rules-service 'fido2 libfido2 #:groups '("plugdev")))
2023-05-19 04:09:31 +00:00
2023-05-19 05:24:44 +00:00
;; This is the default list of services we
;; are appending to.
(modify-services %desktop-services
(guix-service-type config =>
(guix-configuration
(inherit config)
(substitute-urls
(append (list "https://substitutes.nonguix.org")
%default-substitute-urls))
(authorized-keys
(cons* (plain-file "non-guix.pub"
"(public-key
(ecc
(curve Ed25519)
(q #C1FD53E5D4CE971933EC50C9F307AE2171A2D3B52C804642A7A35F84F3A4EA98#)
)
)" ) %default-authorized-guix-keys))))
(udev-service-type config =>
(udev-configuration
(inherit config)
2024-03-18 05:00:08 +00:00
(rules (cons* %backlight-udev-rule
%flipper-udev-rule
2023-05-19 05:24:44 +00:00
(udev-configuration-rules config)))))
(elogind-service-type config =>
(elogind-configuration
(inherit config)
(handle-power-key `ignore)
(handle-suspend-key `ignore)
(handle-lid-switch `ignore)
(kill-user-processes? #t)))
2023-05-19 05:24:44 +00:00
(delete pulseaudio-service-type)
(delete gdm-service-type)
(delete avahi-service-type)
;(delete xorg-server-service-type)
2023-05-19 05:24:44 +00:00
(delete alsa-service-type) )))
(name-service-switch %mdns-host-lookup-nss) ;; Enable .local lookup
2023-05-19 05:24:44 +00:00
(setuid-programs
(append (list (file-like->setuid-program
(file-append
;(specification->package "swaylock-effects")
swaylock-effects-new
"/bin/swaylock"))
(file-like->setuid-program
(file-append
(specification->package "wireshark")
"/bin/dumpcap"))
(file-like->setuid-program
(file-append
(specification->package "spice-gtk")
"/libexec/spice-client-glib-usb-acl-helper"))
2023-05-19 05:24:44 +00:00
(file-like->setuid-program
(file-append
(specification->package "opendoas")
"/bin/doas")))
(delete sudo %setuid-programs)))
(file-systems (cons*
(file-system
(mount-point "/tmp")
(device "none")
(type "tmpfs")
(check? #f))
%base-file-systems))
(bootloader (bootloader-configuration
(bootloader grub-efi-bootloader)
(targets (list "/boot/efi"))
(keyboard-layout keyboard-layout)))))