adding kalading drives and phinger-cursors
This commit is contained in:
parent
842bddebef
commit
f7c0143e18
3 changed files with 83 additions and 19 deletions
|
@ -7,6 +7,7 @@
|
|||
(define-module (home)
|
||||
#:use-module (pkgs emacs-xyz)
|
||||
#:use-module (pkgs tridactyl-native)
|
||||
#:use-module (pkgs phinger-cursors-theme)
|
||||
#:use-module (home-services pipewire)
|
||||
#:use-module (gnu home)
|
||||
#:use-module (gnu home services)
|
||||
|
@ -57,6 +58,7 @@
|
|||
"htop"
|
||||
"ripgrep"
|
||||
"bat"
|
||||
"dutree"
|
||||
"alacritty"
|
||||
"libnotify"
|
||||
"nextcloud-client"
|
||||
|
@ -71,6 +73,7 @@
|
|||
"grim"
|
||||
"slurp"
|
||||
"imv"
|
||||
"phinger-cursors-theme"
|
||||
"firefox"
|
||||
"openjdk"
|
||||
"kwallet"
|
||||
|
@ -80,6 +83,8 @@
|
|||
"kdeconnect"
|
||||
"dolphin"
|
||||
"ark"
|
||||
"kdenlive"
|
||||
"mediainfo"
|
||||
;; "tridactyl-native"
|
||||
"qtwayland@5.15.8"
|
||||
;; "qtwayland"
|
||||
|
@ -221,21 +226,6 @@
|
|||
(aliases '(("grep" . "grep --color=auto")
|
||||
("gh" . "guix home -L ~/dotfiles/guix reconfigure ~/dotfiles/guix/home.scm")
|
||||
("gs" . "sudo guix system -L /home/chris/dotfiles/guix reconfigure /home/chris/dotfiles/guix/$(hostname).scm")))
|
||||
(environment-variables
|
||||
'(("QT_QPA_PLATFORM" . "wayland-egl")
|
||||
("QT_QPA_PLATFORMTHEME" . "qt5ct")
|
||||
("XDG_DATA_DIRS" . "$XDG_DATA_DIRS:$HOME/.local/share/flatpak/exports/share")
|
||||
("RTC_USE_PIPEWIRE" . "true")
|
||||
("GDK_BACKEND" . "wayland")
|
||||
("WLR_DRM_NO_ATOMIC" . "1")
|
||||
("MOZ_ENABLE_WAYLAND" . "1")
|
||||
("WLR_BACKEND" . "vulkan")
|
||||
("WLR_RENDERER" . "vulkan")
|
||||
("SDL_VIDEODRIVER" . "wayland")
|
||||
("WLR_NO_HARDWARE_CURSORS" . "1")
|
||||
("GTK_USE_PORTAL" . "1")
|
||||
("EDITOR" . "emacsclient -t -a")
|
||||
("VISUAL" . "emacsclient -c -a")))
|
||||
(bashrc (list (plain-file "blesh" "source $HOME/.guix-home/profile/share/blesh/ble.sh")
|
||||
(plain-file "home-manager" "source $HOME/.nix-profile/etc/profile.d/hm-session-vars.sh")
|
||||
;;These need to be here so they are at the bottom and therefore after guix-defaults
|
||||
|
@ -249,6 +239,16 @@
|
|||
(simple-service 'extra-env-vars
|
||||
home-environment-variables-service-type
|
||||
`(("PATH" . "$PATH:/home/chris/bin:/home/chris/.nix-profile/bin")
|
||||
("XDG_DATA_DIRS" . "$XDG_DATA_DIRS:$HOME/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share")
|
||||
("RTC_USE_PIPEWIRE" . "true")
|
||||
("GDK_BACKEND" . "wayland")
|
||||
("WLR_DRM_NO_ATOMIC" . "1")
|
||||
("WLR_BACKEND" . "vulkan")
|
||||
("WLR_RENDERER" . "vulkan")
|
||||
("WLR_NO_HARDWARE_CURSORS" . "1")
|
||||
("GTK_USE_PORTAL" . "1")
|
||||
("EDITOR" . "emacsclient -t -a")
|
||||
("VISUAL" . "emacsclient -c -a")
|
||||
("QT_QPA_PLATFORM" . "wayland-egl")
|
||||
("SDL_VIDEODRIVER" . "wayland")
|
||||
("MOZ_ENABLE_WAYLAND" . "1")
|
||||
|
@ -282,11 +282,34 @@
|
|||
("direnv/direnvrc" ,(plain-file "direnvrc" "\
|
||||
use_guixs() {
|
||||
eval \"$(guix shell \"$@\" --search-paths)\"
|
||||
}"))))
|
||||
}"))
|
||||
("gtk-3.0/settings.ini" ,(plain-file "gtk3-settings.ini" "[Settings]
|
||||
gtk-cursor-theme-name=phinger-cursors-light
|
||||
gtk-cursor-theme-size=32
|
||||
gtk-application-prefer-dark-theme=true
|
||||
gtk-button-images=true
|
||||
gtk-decoration-layout=icon:minimize,maximize,close
|
||||
gtk-enable-animations=true
|
||||
gtk-font-name=VictorMono Nerd Font, 11
|
||||
gtk-icon-theme-name=Papirus-Dark
|
||||
gtk-menu-images=true
|
||||
gtk-modules=colorreload-gtk-module:window-decorations-gtk-module:appmenu-gtk-module
|
||||
gtk-primary-button-warps-slider=true
|
||||
gtk-shell-shows-menubar=1
|
||||
gtk-theme-name=Breeze
|
||||
gtk-toolbar-style=3
|
||||
gtk-xft-dpi=98304
|
||||
"))))
|
||||
(simple-service 'scripts
|
||||
home-files-service-type
|
||||
`(("bin" ,(local-file "../scripts" #:recursive? #t))
|
||||
(".mozilla/firefox/chris.default/chrome" ,(local-file "../.config/firefox/chrome" #:recursive? #t))))
|
||||
(".mozilla/firefox/chris.default/chrome" ,(local-file "../.config/firefox/chrome" #:recursive? #t))
|
||||
(".Xresources" ,(plain-file "Xresources" "Xcursor.theme: phinger-cursors-light
|
||||
Xcursor.size: 36
|
||||
"))
|
||||
(".icons/default/index.theme" ,(plain-file "default.theme" "[icon theme]
|
||||
Inherits=phinger-cursors-light
|
||||
"))))
|
||||
|
||||
(service home-gpg-agent-service-type
|
||||
(home-gpg-agent-configuration
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue