From 700a7e67cd58e0321facaa61f3f88f007b13145a Mon Sep 17 00:00:00 2001 From: Thanos Apollo Date: Sun, 26 Mar 2023 14:31:35 +0300 Subject: remove stumpwm and guix --- .config/guix/fsociety.scm | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100755 .config/guix/fsociety.scm (limited to '.config/guix/fsociety.scm') diff --git a/.config/guix/fsociety.scm b/.config/guix/fsociety.scm deleted file mode 100755 index 173d5fd..0000000 --- a/.config/guix/fsociety.scm +++ /dev/null @@ -1,44 +0,0 @@ -(define-module (helena) - #:use-module (gnu) - #:use-module (gnu home) - #:use-module (common) - #:use-module (base)) - -(define home - (home-environment - (services (append - (list - common-home-services))))) - -(define system - (operating-system - (inherit base-operating-system) - - (host-name "helena") - - (bootloader (bootloader-configuration - (bootloader grub-bootloader) - (targets (list "/dev/nvme0n1")) - (keyboard-layout keyboard-layout))) - (swap-devices (list (swap-space - (target (uuid - "a8d782da-f1ea-477e-9b47-cf5aa431e893"))))) - - ;; The list of file systems that get "mounted". The unique - ;; file system identifiers there ("UUIDs") can be obtained - ;; by running 'blkid' in a terminal. - (file-systems (cons* (file-system - (mount-point "/boot/efi") - (device (uuid "021E-83B3" - 'fat32)) - (type "vfat")) - (file-system - (mount-point "/") - (device (uuid - "2bb282ae-7b2d-45c3-92b1-b1524177defb" - 'ext4)) - (type "ext4")) %base-file-systems)))) -(if (getenv "RUNNING_GUIX_HOME") home system) - - - -- cgit v1.2.3