Update default.nix

This commit is contained in:
Thilo Hohlt
2023-06-07 20:44:27 +02:00
committed by GitHub
parent 0187345f2b
commit 7326c84aef

View File

@@ -8,8 +8,6 @@
networking.hostName = "pc"; networking.hostName = "pc";
environment.sessionVariables.NIXOS_OZONE_WL = "1";
hardware.opengl.enable = true; hardware.opengl.enable = true;
security.polkit.enable = true; security.polkit.enable = true;
@@ -122,7 +120,9 @@
name = "Adwaita-dark"; name = "Adwaita-dark";
}; };
}; };
home.packages = with pkgs; [ home = {
sessionVariables.NIXOS_OZONE_WL = "1";
packages = with pkgs; [
dconf dconf
tofi tofi
wayshot wayshot
@@ -131,5 +131,6 @@
slurp slurp
]; ];
}; };
};
} }