diff options
author | Adrian Kummerlaender | 2025-07-23 22:32:44 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2025-07-23 22:32:44 +0200 |
commit | e278b93e759f3a5a9f87e5b3d86eb7c05ffcb28a (patch) | |
tree | 41e71b5ee2ae7abd431b2b0aa29b320a8f645bb1 | |
parent | 5474ab23f8938aebad05d835c884ea38e0c6ba30 (diff) | |
download | nixos_home-wayland.tar nixos_home-wayland.tar.gz nixos_home-wayland.tar.bz2 nixos_home-wayland.tar.lz nixos_home-wayland.tar.xz nixos_home-wayland.tar.zst nixos_home-wayland.zip |
desktop: Trying out wayland envswayland
-rw-r--r-- | gui/conf/init.el | 2 | ||||
-rw-r--r-- | gui/emacs.nix | 2 | ||||
-rw-r--r-- | host/hephaestus.nix | 14 |
3 files changed, 9 insertions, 9 deletions
diff --git a/gui/conf/init.el b/gui/conf/init.el index 628cfae..d4af44c 100644 --- a/gui/conf/init.el +++ b/gui/conf/init.el @@ -27,7 +27,7 @@ (set-frame-font "Iosevka 11" nil t) (set-fontset-font "fontset-default" 'unicode "Iosevka") (set-face-font 'default "Iosevka 11") - (set-fontset-font t 'unicode (font-spec :name "Symbola") nil 'append) + ;(set-fontset-font t 'unicode (font-spec :name "Symbola") nil 'append) (menu-bar-mode -1) (toggle-scroll-bar -1) (tool-bar-mode -1)) diff --git a/gui/emacs.nix b/gui/emacs.nix index 4aaab0b..c902f15 100644 --- a/gui/emacs.nix +++ b/gui/emacs.nix @@ -90,7 +90,7 @@ }; in with pkgs; [ - symbola + #symbola (iosevka-bin.override { variant = "Aile"; }) (iosevka-bin.override { variant = "Etoile"; }) mu diff --git a/host/hephaestus.nix b/host/hephaestus.nix index ca1edd4..0067e48 100644 --- a/host/hephaestus.nix +++ b/host/hephaestus.nix @@ -3,13 +3,13 @@ { imports = [ ../gui/default.nix - ../gui/xmonad.nix - ../gui/networkmanager.nix - ../gui/stalonetray.nix + #../gui/xmonad.nix + #../gui/networkmanager.nix + #../gui/stalonetray.nix ]; - services = { - kdeconnect.enable = true; - screen-locker.enable = pkgs.lib.mkForce false; - }; + #services = { + # kdeconnect.enable = true; + # screen-locker.enable = pkgs.lib.mkForce false; + #}; } |