men
This commit is contained in:
parent
dbbd9fa1de
commit
af435b1045
3 changed files with 36 additions and 36 deletions
|
@ -7,16 +7,16 @@
|
||||||
(use-modules (gnu home)
|
(use-modules (gnu home)
|
||||||
(gnu packages)
|
(gnu packages)
|
||||||
(gnu packages vim)
|
(gnu packages vim)
|
||||||
(gnu packages gcc)
|
(gnu packages gcc)
|
||||||
(gnu packages gnupg)
|
(gnu packages gnupg)
|
||||||
(gnu packages virtualization)
|
(gnu packages virtualization)
|
||||||
(gnu services)
|
(gnu services)
|
||||||
(guix packages)
|
(guix packages)
|
||||||
(guix gexp)
|
(guix gexp)
|
||||||
(gnu home services shells)
|
(gnu home services shells)
|
||||||
(gnu home services desktop)
|
(gnu home services desktop)
|
||||||
(gnu home services gnupg)
|
(gnu home services gnupg)
|
||||||
(gnu home services)
|
(gnu home services)
|
||||||
(home-services pipewire)
|
(home-services pipewire)
|
||||||
(home-packages mozillia)
|
(home-packages mozillia)
|
||||||
(home-packages audio))
|
(home-packages audio))
|
||||||
|
@ -26,40 +26,40 @@
|
||||||
(inherit neovim)
|
(inherit neovim)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(modify-inputs (package-native-inputs neovim)
|
(modify-inputs (package-native-inputs neovim)
|
||||||
(prepend gcc-12)))))
|
(prepend gcc-12)))))
|
||||||
|
|
||||||
(home-environment
|
(home-environment
|
||||||
;; Below is the list of packages that will show up in your
|
;; Below is the list of packages that will show up in your
|
||||||
;; Home profile, unser ~/.guix-home/profile.
|
;; Home profile, unser ~/.guix-home/profile.
|
||||||
(packages (append (specifications->packages (list "xdg-utils"
|
(packages (append (specifications->packages (list "xdg-utils"
|
||||||
"mako"
|
"mako"
|
||||||
"i3-autotiling"
|
"i3-autotiling"
|
||||||
"wofi"
|
"wofi"
|
||||||
"qrencode"
|
"qrencode"
|
||||||
"sassc"
|
"sassc"
|
||||||
"binutils"
|
"binutils"
|
||||||
"gcc-toolchain"
|
"gcc-toolchain"
|
||||||
"clang-toolchain"
|
"clang-toolchain"
|
||||||
"libreoffice"
|
"libreoffice"
|
||||||
"gnupg"
|
"gnupg"
|
||||||
"pavucontrol"
|
"pavucontrol"
|
||||||
"bind:utils"
|
"bind:utils"
|
||||||
"syncthing"
|
"syncthing"
|
||||||
"imv"
|
"imv"
|
||||||
"unzip"
|
"unzip"
|
||||||
"p7zip"
|
"p7zip"
|
||||||
"curl"
|
"curl"
|
||||||
"htop"
|
"htop"
|
||||||
"curl"
|
"curl"
|
||||||
"zathura"
|
"zathura"
|
||||||
"zathura-pdf-mupdf"
|
"zathura-pdf-mupdf"
|
||||||
"gimp"
|
"gimp"
|
||||||
"weechat"
|
"weechat"
|
||||||
"mpv"
|
"mpv"
|
||||||
"git"
|
"git"
|
||||||
"pinentry"
|
"pinentry"
|
||||||
"ungoogled-chromium"
|
"ungoogled-chromium"
|
||||||
"element-desktop"
|
"element-desktop"
|
||||||
"nm-tray"
|
"nm-tray"
|
||||||
"pfetch"
|
"pfetch"
|
||||||
"acpi"
|
"acpi"
|
||||||
|
@ -77,7 +77,7 @@
|
||||||
"tree-sitter-cli"
|
"tree-sitter-cli"
|
||||||
"python-pynvim"))
|
"python-pynvim"))
|
||||||
|
|
||||||
(list my-neovim easyeffects firefox-wayland-new)))
|
(list my-neovim easyeffects firefox-wayland-new)))
|
||||||
|
|
||||||
;; Below is the list of Home services. To search for available
|
;; Below is the list of Home services. To search for available
|
||||||
;; services, run 'guix home search KEYWORD' in a terminal.
|
;; services, run 'guix home search KEYWORD' in a terminal.
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
(define-module (home-config base-system)
|
(define-module (home-config base-system)
|
||||||
#:use-module (gnu)
|
#:use-module (gnu)
|
||||||
#:use-module (nongnu packages linux)
|
|
||||||
#:use-module (gnu system setuid)
|
#:use-module (gnu system setuid)
|
||||||
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages admin)
|
#:use-module (gnu packages admin)
|
||||||
#:use-module (gnu packages avahi)
|
#:use-module (gnu packages avahi)
|
||||||
#:use-module (gnu packages)
|
|
||||||
#:use-module (guix packages)
|
|
||||||
#:use-module (gnu packages shells)
|
#:use-module (gnu packages shells)
|
||||||
#:use-module (gnu packages tls)
|
#:use-module (gnu packages tls)
|
||||||
#:use-module (srfi srfi-1)
|
|
||||||
#:use-module (gnu packages security-token)
|
#:use-module (gnu packages security-token)
|
||||||
#:use-module (gnu services security-token)
|
|
||||||
#:use-module (gnu packages virtualization)
|
#:use-module (gnu packages virtualization)
|
||||||
|
#:use-module (guix packages)
|
||||||
|
#:use-module (nongnu packages linux)
|
||||||
|
#:use-module (srfi srfi-1)
|
||||||
|
#:use-module (gnu services security-token)
|
||||||
#:use-module (gnu services cups)
|
#:use-module (gnu services cups)
|
||||||
#:use-module (gnu services desktop)
|
#:use-module (gnu services desktop)
|
||||||
#:use-module (gnu services networking)
|
#:use-module (gnu services networking)
|
||||||
|
@ -93,7 +93,6 @@
|
||||||
"docker"
|
"docker"
|
||||||
"linux-pam"
|
"linux-pam"
|
||||||
"pulseaudio"
|
"pulseaudio"
|
||||||
;;"pipewire"
|
|
||||||
"libx11"
|
"libx11"
|
||||||
"xorg-server-xwayland"
|
"xorg-server-xwayland"
|
||||||
"fprintd"
|
"fprintd"
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
(inputs
|
(inputs
|
||||||
(modify-inputs (package-inputs libvirt)
|
(modify-inputs (package-inputs libvirt)
|
||||||
(append ovmf)))))
|
(append ovmf)))))
|
||||||
|
|
||||||
(define (ovmf-special-files config)
|
(define (ovmf-special-files config)
|
||||||
`(("/usr/share/OVMF/OVMF_CODE.fd",
|
`(("/usr/share/OVMF/OVMF_CODE.fd",
|
||||||
(file-append ovmf "/share/firmware/ovmf_x64.bin"))))
|
(file-append ovmf "/share/firmware/ovmf_x64.bin"))))
|
||||||
|
|
Loading…
Reference in a new issue