summaryrefslogtreecommitdiff
path: root/home-configuration.scm
blob: 54d97be5ab3c8c4b77f5c58b6ab7542ebc1337de (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
(define-module (aisaka-home-configuration)
  #:use-module (gnu home)
  #:use-module (gnu home services)
  #:use-module (gnu home services shells)
  #:use-module (gnu packages)
  #:use-module (gnu services)
  #:use-module (guix gexp))

(define list-to-package-output
  (compose list
	   specification->package+output))

(define home-packages
  '("cpupower"
    "dconf-editor"
    "emacs"
    "emacs-aggressive-indent"
    "emacs-guix"
    "emacs-iedit"
    "emacs-multiple-cursors"
    "emacs-paredit"
    "font-google-noto"
    "git"
    "git-lfs"
    "gnome-shell-extension-forge"
    "gnome-tweaks"
    "gnupg"
    "guile"
    "guile-spec"
    "icecat"
    "icedove"
    "jami"
    "libreoffice"
    "newsboat"
    "pwgen"
    "seahorse"
    "sicp"
    "trezor-agent"
    "unzip"
    "zip"))

(define packages
  (map list-to-package-output
       home-packages))

(define config-prefix
  "/home/marek/src/guix-config/")

(define home-env-vars
  '(("EDITOR" . "emacs")
    ("NVM_DIR" . "$HOME/src/nvm")
    ("GUILE_AUTO_COMPILE" . "0")))

(define allow-downgrades
  "--allow-downgrades ")

(define pull-guix
  "guix pull ")

(define pull-guix-
  (string-append pull-guix
		 allow-downgrades
		 "--disable-authentication "))

(define guix-home
  "guix home reconfigure ")

(define home-configuration
  "home-configuration.scm ")

(define reconfigure-home
  (string-append guix-home
		 config-prefix
		 home-configuration))

(define reconfigure-home-
  (string-append reconfigure-home
		 allow-downgrades))

(define guix-system
  "sudo guix system reconfigure ")

(define system-configuration
  "system-configuration.scm ")

(define reconfigure-system
  (string-append guix-system
		 config-prefix
		 system-configuration))

(define reconfigure-system-
  (string-append reconfigure-system
		 allow-downgrades))

(define and
  "&& ")

(define system-update
  (string-append pull-guix
		 and
		 reconfigure-system
		 and
		 reconfigure-home))

(define system-update-
  (string-append pull-guix-
		 and
		 reconfigure-system-
		 and
		 reconfigure-home-))

(define home-aliases
  `(("grep" . "grep --color=auto ")
    ("ll" . "ls -l ")
    ("ls" . "ls -p --color=auto ")
    ("pull-guix" . ,pull-guix)
    ("pull-guix-" . ,pull-guix-)
    ("reconfigure-home" . ,reconfigure-home)
    ("reconfigure-home-" . ,reconfigure-home-)
    ("reconfigure-system" . ,reconfigure-system)
    ("reconfigure-system-" . ,reconfigure-system-)
    ("system-update" . ,system-update)
    ("system-update-" . ,system-update-)))

(define bash-profile-target
  (string-append config-prefix
		 ".bash_profile"))

(define bash-profile
  (local-file bash-profile-target
	      "bash_profile"))

(define home-bash-profile
  `(,bash-profile))

(define bashrc-target
  (string-append config-prefix
		 ".bashrc"))

(define bashrc
  (local-file bashrc-target
	      "bashrc"))

(define home-bashrc
  `(,bashrc))

(define bash-configuration
  (home-bash-configuration (environment-variables home-env-vars)
			   (aliases home-aliases)
			   (bash-profile home-bash-profile)
			   (bashrc home-bashrc)))

(define home-bash-service
  (service home-bash-service-type
	   bash-configuration))

(define emacs-init
  (local-file "emacs.el"))

(define git-config
  (local-file "git.config"))

(define gsad-source
  (local-file "guix-shell-authorized-directories"))

(define ssh-config
  (local-file "ssh.config"))

(define home-files
  `((".config/git/config" ,git-config)
    (".config/guix/shell-authorized-directories" ,gsad-source)
    (".emacs" ,emacs-init)
    (".ssh/config" ,ssh-config)))

(define configuration-files-service
  (simple-service 'configuration-files
		  home-files-service-type
		  home-files))

(define services
  `(,home-bash-service
    ,configuration-files-service))

(home-environment (packages packages)
		  (services services))