From 7326c84aef62c83bc4f2b8cceb9ff388d9dc9f22 Mon Sep 17 00:00:00 2001 From: Thilo Hohlt <123883702+thiloho@users.noreply.github.com> Date: Wed, 7 Jun 2023 20:44:27 +0200 Subject: [PATCH] Update default.nix --- nixos-configurations/pc/default.nix | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/nixos-configurations/pc/default.nix b/nixos-configurations/pc/default.nix index 5905ea6..a5d8b73 100644 --- a/nixos-configurations/pc/default.nix +++ b/nixos-configurations/pc/default.nix @@ -8,8 +8,6 @@ networking.hostName = "pc"; - environment.sessionVariables.NIXOS_OZONE_WL = "1"; - hardware.opengl.enable = true; security.polkit.enable = true; @@ -122,14 +120,17 @@ name = "Adwaita-dark"; }; }; - home.packages = with pkgs; [ - dconf - tofi - wayshot - wl-clipboard - xdg-utils - slurp - ]; + home = { + sessionVariables.NIXOS_OZONE_WL = "1"; + packages = with pkgs; [ + dconf + tofi + wayshot + wl-clipboard + xdg-utils + slurp + ]; + }; }; }