summaryrefslogtreecommitdiff
path: root/.examples/desktop-os-minimal.scm
diff options
context:
space:
mode:
Diffstat (limited to '.examples/desktop-os-minimal.scm')
-rw-r--r--.examples/desktop-os-minimal.scm42
1 files changed, 0 insertions, 42 deletions
diff --git a/.examples/desktop-os-minimal.scm b/.examples/desktop-os-minimal.scm
deleted file mode 100644
index 4f173a9..0000000
--- a/.examples/desktop-os-minimal.scm
+++ /dev/null
@@ -1,42 +0,0 @@
-;; PantherX OS Server Configuration
-
-(use-modules (gnu)
- (gnu system)
- (px system config))
-
-(define %ssh-public-key
- "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIP7gcLZzs2JiEx2kWCc8lTHOC0Gqpgcudv0QVJ4QydPg franz")
-
-(px-desktop-os
- (operating-system
- (host-name "px-base")
- (timezone "Europe/Berlin")
- (locale "en_US.utf8")
-
- (bootloader (bootloader-configuration
- (bootloader grub-bootloader)
- (targets '("/dev/vda"))))
-
- (file-systems (cons (file-system
- (device (file-system-label "my-root"))
- (mount-point "/")
- (type "ext4"))
- %base-file-systems))
-
- (users (cons (user-account
- (name "panther")
- (comment "panther's account")
- (group "users")
- ;; Set the default password to 'pantherx'
- ;; Important: Change with 'passwd panther' after first login
- (password (crypt "pantherx" "$6$abc"))
- (supplementary-groups '("wheel"
- "audio" "video"))
- (home-directory "/home/panther"))
- %base-user-accounts))
-
- (packages %px-desktop-core-packages)
- (services %px-desktop-minmal-services))
-
- #:open-ports '(("tcp" "ssh"))
- #:authorized-keys `(("root" ,(plain-file "panther.pub" %ssh-public-key))))