diff options
author | tzlil <tzlils@protonmail.com> | 2023-03-24 14:11:12 +0300 |
---|---|---|
committer | tzlil <tzlils@protonmail.com> | 2023-03-24 14:11:12 +0300 |
commit | f93700b22836af7e92108c697f4638bca433b87e (patch) | |
tree | e92d78dfb6ff2fd3b401acc2f3e1cc26af49fd0b /hosts/vm | |
parent | 2e917bc65bba94a9b4b4eaddb90db2824e869ac9 (diff) |
work on laptop
Diffstat (limited to 'hosts/vm')
-rw-r--r-- | hosts/vm/cfg.nix | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/hosts/vm/cfg.nix b/hosts/vm/cfg.nix index 7f822b0..5c47612 100644 --- a/hosts/vm/cfg.nix +++ b/hosts/vm/cfg.nix @@ -13,6 +13,7 @@ ../../mixins/tailscale.nix ../../mixins/cli.nix ../../mixins/greet.nix + ../../mixins/pipewire.nix # ../../mixins/hyprland.nix ../../mixins/sway.nix # (modulesPath + "/profiles/qemu-guest.nix") @@ -81,13 +82,17 @@ algorithm = "zstd"; }; - greeter.initialSession = "sh -c ${pkgs.sway}/bin/sway"; - hardware.opengl = { enable = true; extraPackages = with pkgs; [ rocm-opencl-icd rocm-opencl-runtime ]; driSupport = true; driSupport32Bit = true; }; + + greeter.initialSession = "env WLR_RENDERER=pixman ${pkgs.sway.out}/bin/sway"; + # home-manager.users.tzlil.wayland.windowManager.sway.config.input."type:keyboard".xkb_variant = lib.mkForce ""; + + # nice to work with + security.sudo.wheelNeedsPassword = false; }; } |