diff options
author | Thanos Apollo <[email protected]> | 2022-12-07 07:59:29 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2022-12-07 07:59:29 +0200 |
commit | 50dd18672e00124a369479273a920ed9e48ee4e9 (patch) | |
tree | 44140e32c3b0dd41e0ce2dd2b2a085a2f023924a /.config | |
parent | bb125a7a83593fc143b982891ab7338e290b154d (diff) |
guix:Add package specifications
Diffstat (limited to '.config')
-rw-r--r-- | .config/guix/system.scm | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/.config/guix/system.scm b/.config/guix/system.scm index d9e4c68..316b013 100644 --- a/.config/guix/system.scm +++ b/.config/guix/system.scm @@ -19,8 +19,7 @@ (timezone "Europe/Athens") (keyboard-layout (keyboard-layout "us,gr" #:options - '("grp:alt_tab_toggle" - "ctrl:nocaps"))) + '("ctrl:nocaps"))) (host-name "evilgnu") ;; The list of user accounts ('root' is implicit). @@ -43,9 +42,14 @@ ;; for packages and 'guix install PACKAGE' to install a package. (packages (append (list (specification->package "emacs") (specification->package "emacs-exwm") - (specification->package - "emacs-desktop-environment") - (specification->package "nss-certs")) + (specification->package "emacs-desktop-environment") + (specification->package "nss-certs") + (specification->package "python") + (specification->package "firefox") + (specification->package "telegram-desktop") + (specification->package "alacritty") + (specification->package "emacs-vterm") + (specification->package "emacs-multi-vterm")) %base-packages)) ;; Below is the list of system services. To search for available |