diff --git a/home-config/waybar/config b/home-config/waybar/config index a11ec45..68b2adc 100644 --- a/home-config/waybar/config +++ b/home-config/waybar/config @@ -72,7 +72,7 @@ "network": { "format": " disconnected", "format-wifi": " {essid}", - "format-ethernet": "< {ipaddr}/{cidr}", + "format-ethernet": " {ipaddr}/{cidr}", "format-disconnected": " disconnected", "max-length": 50, "on-click": "nm-connection-editor", diff --git a/home-config/waybar/style.css b/home-config/waybar/style.css index dd1bf67..2452a0b 100644 --- a/home-config/waybar/style.css +++ b/home-config/waybar/style.css @@ -108,7 +108,7 @@ button { color: #cc5c5c; } -#network.wifi { +#network.wifi, #network.ethernet { color: #789ebf; } diff --git a/home-config/zsh/zprofile b/home-config/zsh/zprofile index 050131a..2fc8f23 100644 --- a/home-config/zsh/zprofile +++ b/home-config/zsh/zprofile @@ -29,9 +29,9 @@ export GTK_THEME=Lavanda-Sea-Dark export TERMINAL=alacritty # Setup Guix Environment -export GUIX_PROFILE=$HOME/.guix-home -. $GUIX_PROFILE/setup-environment -$GUIX_PROFILE/on-first-login +export GUIX_PROFILE=$HOME/.guix-profile +$HOME/.guix-home/on-first-login +. $HOME/.guix-home/setup-environment # Setup Nix Environment export NIX_PROFILE=$HOME/.nix-profile diff --git a/kaworu.scm b/kaworu.scm new file mode 100644 index 0000000..1d0203d --- /dev/null +++ b/kaworu.scm @@ -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)))