summaryrefslogtreecommitdiff
path: root/.config/guix/hati.scm
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2024-08-12 21:38:59 -0600
committerbd <bdunahu@operationnull.com>2024-08-12 21:38:59 -0600
commit0a52f3f16e5e98ed782fc8a5e09e89a33e687295 (patch)
tree0275c5d662b2aaece306df264a626bead460118d /.config/guix/hati.scm
parentde5637cb39baa0c867c5e2e4e8105a9e24ecb9ab (diff)
Move "hati" and "vali" to the graveyard
Diffstat (limited to '.config/guix/hati.scm')
-rw-r--r--.config/guix/hati.scm77
1 files changed, 0 insertions, 77 deletions
diff --git a/.config/guix/hati.scm b/.config/guix/hati.scm
deleted file mode 100644
index 2c08f4e..0000000
--- a/.config/guix/hati.scm
+++ /dev/null
@@ -1,77 +0,0 @@
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; This configuration adapts the base-level 'ymir' ;;
-;; OS declaration for 'hati', a desktop. ;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(define-module (hati)
- #:use-module (gnu)
- #:use-module (gnu home)
- #:use-module (gnu home services)
- #:use-module (gnu home services syncthing)
- #:use-module (gnu packages)
- #:use-module (gnu packages xorg)
- #:use-module (gnu services)
- #:use-module (gnu services guix)
- #:use-module (guix gexp)
- #:use-module (modules base)
- #:use-module (modules dwm)
- #:use-module (modules utils)
- #:use-module (modules xorg)
- #:use-module (modules ymir)
- #:use-module (modules pdf))
-
-
-(define home
- (home-environment
- (services
- `(,@bd-base-home-services
- ,@bd-desktop-home-services
- ,@bd-pdf-services
- ,@bd-dwm-home-services
- ,(service home-syncthing-service-type)))))
-
-
-(operating-system
- (inherit ymir)
- (host-name "hati")
-
- ;; (all packages are system wide)
- (packages
- `(,@bd-base-system-packages
- ,@bd-desktop-system-packages
- ,@bd-dwm-system-packages
- ,@bd-mpd-package
-
- ;; machine-specific packages
- ,@(list
- xf86-video-nouveau)))
-
- (services
- `(,@bd-base-system-services
- ,@bd-desktop-system-services
- ,@bd-mpd-service
- ,(service guix-home-service-type
- `((,username ,home)))))
-
- (mapped-devices (list (mapped-device
- (source (uuid "1e9c3cd7-97c2-411a-975a-40222d185563"))
- (target "hidden")
- (type luks-device-mapping))))
-
- (file-systems (cons* (file-system
- (mount-point "/boot/efi")
- (device (uuid
- "1448-51AE"
- 'fat32))
- (type "vfat"))
- (file-system
- (mount-point "/home")
- (device "/dev/mapper/hidden")
- (type "ext4")
- (dependencies mapped-devices))
- (file-system
- (mount-point "/")
- (device (uuid
- "df334be4-5828-45b4-842a-9a8d97cfa40a"
- 'ext4))
- (type "ext4")) %base-file-systems)))