add gnome settings, as in my nix
This commit is contained in:
parent
665cd49326
commit
b9b0d3e5a3
13
channels.scm
13
channels.scm
@ -15,4 +15,15 @@
|
|||||||
(make-channel-introduction
|
(make-channel-introduction
|
||||||
"897c1a470da759236cc11798f4e0a5f7d4d59fbc"
|
"897c1a470da759236cc11798f4e0a5f7d4d59fbc"
|
||||||
(openpgp-fingerprint
|
(openpgp-fingerprint
|
||||||
"2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5")))))
|
"2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5"))))
|
||||||
|
(channel
|
||||||
|
(name 'michael_atlas)
|
||||||
|
(url "https://git.sr.ht/~michal_atlas/guix-channel")
|
||||||
|
(branch "master")
|
||||||
|
;;(introduction
|
||||||
|
;; (make-channel-introduction
|
||||||
|
;; "d45185a2755daf831f1c3dc63efbf2bbbb29b99e"
|
||||||
|
;; (openpgp-fingerprint
|
||||||
|
;; "")
|
||||||
|
;; ))
|
||||||
|
))
|
||||||
|
@ -11,7 +11,9 @@
|
|||||||
(gnu services)
|
(gnu services)
|
||||||
(guix gexp)
|
(guix gexp)
|
||||||
(gnu home services)
|
(gnu home services)
|
||||||
(gnu home services shells))
|
(gnu home services shells)
|
||||||
|
(atlas home services dconf)
|
||||||
|
)
|
||||||
|
|
||||||
(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
|
||||||
@ -23,18 +25,39 @@
|
|||||||
;; 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.
|
||||||
(services
|
(services
|
||||||
(list (service home-bash-service-type
|
(list
|
||||||
(home-bash-configuration
|
(service home-dconf-load-service-type
|
||||||
(bash-profile (list (plain-file
|
#~`((org/gnome/shell
|
||||||
"bash-profile"
|
(disable-user-extensions #f))
|
||||||
"
|
(org/gnome/desktop/interface
|
||||||
export HISTFILE=$XDG_CACHE_HOME/.bash_history
|
(color-scheme "prefer-dark"))
|
||||||
GUIX_PROFILE=/home/mir/.guix-profile
|
(org/gnome/mutter
|
||||||
. $GUIX_PROFILE/etc/profile
|
(edge-tiling #t))
|
||||||
"
|
(org/gnome/desktop/input-sources
|
||||||
)))
|
(xkb-options #("caps:escape")))
|
||||||
(aliases '(("grep" . "grep --color=auto")
|
(org/gnome/desktop/wm/preferences
|
||||||
("ll" . "eza -l")
|
(focus-mode "sloppy"))
|
||||||
("ls" . "eza")
|
(org/gnome/settings-daemon/plugins/power
|
||||||
("vi" . "nvim"))
|
(idle-dim #f)
|
||||||
))))))
|
(sleep-inactive-ac-type "nothing"))
|
||||||
|
(org/gnome/gnome-system-monitor
|
||||||
|
(current-tab "resources"))
|
||||||
|
(org/gnome/desktop/interface
|
||||||
|
(show-battery-percentage #t))
|
||||||
|
(org/gnome/desktop/peripherals/touchpad
|
||||||
|
(tap-to-click #t))))
|
||||||
|
(service home-bash-service-type
|
||||||
|
(home-bash-configuration
|
||||||
|
(bash-profile (list (plain-file
|
||||||
|
"bash-profile"
|
||||||
|
"
|
||||||
|
export HISTFILE=$XDG_CACHE_HOME/.bash_history
|
||||||
|
GUIX_PROFILE=/home/mir/.guix-profile
|
||||||
|
. $GUIX_PROFILE/etc/profile
|
||||||
|
"
|
||||||
|
)))
|
||||||
|
(aliases '(("grep" . "grep --color=auto")
|
||||||
|
("ll" . "eza -l")
|
||||||
|
("ls" . "eza")
|
||||||
|
("vi" . "nvim"))
|
||||||
|
))))))
|
||||||
|
Loading…
Reference in New Issue
Block a user