add kaworu desktop, fix zprofile loading

This commit is contained in:
Freya Murphy 2023-10-05 18:38:59 -04:00
parent 72da935ae2
commit 1fc158f36c
No known key found for this signature in database
GPG key ID: 988032A5638EE799
4 changed files with 28 additions and 5 deletions

View file

@ -72,7 +72,7 @@
"network": { "network": {
"format": " disconnected", "format": " disconnected",
"format-wifi": " {essid}", "format-wifi": " {essid}",
"format-ethernet": "< {ipaddr}/{cidr}", "format-ethernet": " {ipaddr}/{cidr}",
"format-disconnected": " disconnected", "format-disconnected": " disconnected",
"max-length": 50, "max-length": 50,
"on-click": "nm-connection-editor", "on-click": "nm-connection-editor",

View file

@ -108,7 +108,7 @@ button {
color: #cc5c5c; color: #cc5c5c;
} }
#network.wifi { #network.wifi, #network.ethernet {
color: #789ebf; color: #789ebf;
} }

View file

@ -29,9 +29,9 @@ export GTK_THEME=Lavanda-Sea-Dark
export TERMINAL=alacritty export TERMINAL=alacritty
# Setup Guix Environment # Setup Guix Environment
export GUIX_PROFILE=$HOME/.guix-home export GUIX_PROFILE=$HOME/.guix-profile
. $GUIX_PROFILE/setup-environment $HOME/.guix-home/on-first-login
$GUIX_PROFILE/on-first-login . $HOME/.guix-home/setup-environment
# Setup Nix Environment # Setup Nix Environment
export NIX_PROFILE=$HOME/.nix-profile export NIX_PROFILE=$HOME/.nix-profile

23
kaworu.scm Normal file
View file

@ -0,0 +1,23 @@
(use-modules (home-config base-system)
(gnu))
(operating-system
(inherit base-operating-system)
(host-name "kaworu")
(mapped-devices (list (mapped-device
(source (uuid
"89257280-202b-4565-b832-89f160d5e4e2"))
(target "cryptroot")
(type luks-device-mapping))))
(file-systems (cons* (file-system
(mount-point "/")
(device "/dev/mapper/cryptroot")
(type "btrfs")
(dependencies mapped-devices))
(file-system
(mount-point "/boot/efi")
(device (uuid "099A-D668"
'fat32))
(type "vfat")) %base-file-systems)))