From dbefb96cb99495bf038733cce3a46ee734d66723 Mon Sep 17 00:00:00 2001 From: Snorre Ettrup Altschul Date: Tue, 21 Jan 2025 15:13:39 +0100 Subject: [PATCH] moved to foot terminal --- README.md | 7 +++++-- hosts/desktop/home.nix | 2 ++ modules/programs/foot.nix | 9 +++++++++ modules/window-managers/hyprland/default.nix | 6 +++--- modules/window-managers/hyprland/env.nix | 4 ++-- 5 files changed, 21 insertions(+), 7 deletions(-) create mode 100755 modules/programs/foot.nix diff --git a/README.md b/README.md index d95adbc..d0af3d4 100755 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # If your nix config is so great why isn't there a nix config tw- Second iteration of my nix config. Got tired of the old one not quite working how i liked on my desktop (mainly impermanence not working without disk encryption enaled) -## AAAAAa -dont use this. *yet* +## TODO +- Fix cursor being twice as big in xwayland (shouldnt tylix fix this?) +- Fix waybar just, not showing up, at all. +- Fix impermanence for non-luks systems +- diff --git a/hosts/desktop/home.nix b/hosts/desktop/home.nix index b0535ab..7d4b895 100755 --- a/hosts/desktop/home.nix +++ b/hosts/desktop/home.nix @@ -108,6 +108,8 @@ obs-studio vial + + path-of-building ]); # Mount 2tb harddisk diff --git a/modules/programs/foot.nix b/modules/programs/foot.nix new file mode 100755 index 0000000..01bf87b --- /dev/null +++ b/modules/programs/foot.nix @@ -0,0 +1,9 @@ +{ ... }: + +{ + programs.foot.enable = true; + + home.sessionVariables.TERM = "alacritty"; + home.sessionVariables.TERMINAL = "alacritty"; + home.sessionVariables.TERMCMD = "alacritty"; +} diff --git a/modules/window-managers/hyprland/default.nix b/modules/window-managers/hyprland/default.nix index d99b04a..ade5c43 100755 --- a/modules/window-managers/hyprland/default.nix +++ b/modules/window-managers/hyprland/default.nix @@ -1,14 +1,14 @@ { monitors ? [] , border-radius ? 0 }: -{ lib, pkgs, inputs, ... } @ params: +{ lib, pkgs, inputs, config, ... } @ params: { imports = [ ./exec.nix ./env.nix ]; - programs.alacritty.enable = lib.mkDefault true; + # programs.alacritty.enable = lib.mkDefault true; wayland.windowManager.hyprland = let @@ -100,7 +100,7 @@ "$mod" = "super"; bind = [ - "$mod, Return, exec, alacritty" + "$mod, Return, exec, ${config.home.sessionVariables.TERMCMD}" "$mod, C, killactive" "$mod, V, togglefloating" "$mod, G, fullscreen" diff --git a/modules/window-managers/hyprland/env.nix b/modules/window-managers/hyprland/env.nix index 76d0f56..a74fe88 100755 --- a/modules/window-managers/hyprland/env.nix +++ b/modules/window-managers/hyprland/env.nix @@ -5,9 +5,9 @@ # "LIBVA_DRIVER_NAME,nvidia" "LIBVA_DRIVER_NAME,iHD" "XDG_SESSION_TYPE,wayland" - "GBM_BACKEND,wayland" + # "GBM_BACKEND,wayland" "GTK_USE_PORTAL,1" - "__GLX_VENDOR_LIBRARY_NAME,nvidia" + "__GLX_VENDOR_LIBRARY_NAME,amdgpu" "QT_QPA_PLATFORM,wayland" "XDG_CURRENT_DESKTOP,Hyprland" "XDG_SESSION_DESKTOP,Hyprland"