summaryrefslogtreecommitdiff
path: root/guix/home.scm
blob: 08fd7ce6037291fce2a86ad3823ade250e2a627b (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
;; This "home-environment" file can be passed to 'guix home reconfigure'
;; to reproduce the content of your profile.  This is "symbolic": it only
;; specifies package names.  To reproduce the exact same profile, you also
;; need to capture the channels being used, as returned by "guix describe".
;; See the "Replicating Guix" section in the manual.

(use-modules (gnu packages)
	     (gnu packages gnupg)
             (gnu services)
             (guix gexp)
	     (gnu system)
	     (gnu home)
	     (gnu home services)
	     (gnu home services dotfiles)
             (gnu home services shells)
	     (gnu home services desktop)
	     (gnu home services gnupg))

(home-environment
 ;; Below is the list of packages that will show up in your
 ;; Home profile, under ~/.guix-home/profile.
 (packages (specifications->packages
	    (list "anki" "qtwebengine" "aspell-dict-el" "perl" "tree"
		  "font-iosevka-aile" "font-jetbrains-mono" "mu" "hyfetch"
		  "emacs-nov-el" "iptables" "emacs-yeetube" "syncthing"
		  "ungoogled-chromium" "emacs-pdf-tools" "python-lsp-server"
		  "transmission" "emacs-pgtk" "mpv" "yt-dlp" "icecat" "dino"
		  "0ad" "torbrowser" "emacs-elpy" "python-requests"
		  "python-mypy" "fuzzel" "alacritty" "wtype" "git" "emacs-geiser"
		  "emacs-geiser-guile" "sbcl" "curl" "libvterm" "emacs-vterm"
		  "inetutils" "emacs-jabber" "bind" "go" "nmap" "hunspell"
		  "hunspell-dict-en-us" "pinentry-emacs" "mlocate" "rsync"
		  "grimshot" "nyxt")))
 ;; Below is the list of Home services.  To search for available
 ;; services, run 'guix home search KEYWORD' in a terminal.
 (services
  (list (service home-bash-service-type
                 (home-bash-configuration
		  (guix-defaults? #f)
                  (aliases '(("ga" . "git add")
                             ("gaa" . "git add .")
                             ("gc" . "git commit -m")
                             ("gp" . "git push -u origin")
                             ("gpd" . "git push -u origin developer")
                             ("gpm" . "git push -u origin master")
                             ("grep" . "grep --color=auto")
                             ("gs" . "git status")
                             ("klight" . "brightnessctl --device='\\''tpacpi::kbd_backlight'\\'' set 1")
                             ("ll" . "ls -lah --color")
                             ("logout" . "pkill -U $USER")
                             ("ls" . "ls --color")
                             ("o" . "emacsclient -n")
                             ("weather" . "curl wttr.in")
                             ("ytd" . "yt-dlp")
			     ("gx" . "guix")))
                  (bashrc (list (local-file "/home/thanos/dotfiles/bash-base.sh" #:recursive? #t)))))
	(service home-dotfiles-service-type
		 (home-dotfiles-configuration
		  (directories '("/home/thanos/dotfiles/"))
		  (excluded '(".*~" ".*\\.swp" "\\.git" "\\.gitignore"
			      ".*emacs.el" "waybar-config" "vimium-options.json"
			      ".*bash" "README" "LICENSE" ".*\\.scm" "__pycache__" "bash-base.sh"))
		  (layout 'plain)))
	;; Env variables
        (simple-service 'profile-service-type
			home-environment-variables-service-type
			'(("VISUAL" . "emacsclient")
			  ("EDITOR" . "emacsclient")
			  ("GTK_THEME" . "Adwaita-dark")
			  ("XDG_CURRENT_DESKTOP" . "sway")
			  ("XDG_SESSION_TYPE" . "wayland")
			  ("BROWSER" . "icecat")
			  ("XDG_SCREENSHOTS_DIR" . "/home/$USER/Pictures/screenshots/")
			  ("PATH" . "/home/$USER/.local/bin:$PATH")))
	;; GPG Configuration
	(service home-gpg-agent-service-type
		 (home-gpg-agent-configuration
		  (pinentry-program
		   (file-append pinentry-gtk2 "/bin/pinentry-gtk-2"))
		  (ssh-support? #t)
		  (default-cache-ttl 28800)
		  (max-cache-ttl 28800)
		  (default-cache-ttl-ssh 28800)
		  (max-cache-ttl-ssh 28800))))))