Compare commits

..

No commits in common. "1dce59a7cd183c13da3810fdc58e91514c5998b9" and "ff3d88746a8da397e529d838dc8fa54fa9741725" have entirely different histories.

1 changed files with 8 additions and 6 deletions

View File

@ -1,7 +1,5 @@
{ config, lib, pkgs, ... }:
with pkgs;
{
# Display manager
services.xserver.enable = true;
@ -20,7 +18,7 @@ with pkgs;
# Window manager
programs.sway = {
enable = true;
extraPackages = [
extraPackages = with pkgs; [
xwayland
swaylock
swayidle
@ -54,11 +52,15 @@ with pkgs;
programs.light.enable = true;
# Blue light filter
location.provider = "geoclue2";
location = {
latitude = 51.05;
longitude = 3.71;
provider = "manual";
};
services.redshift = {
package = pkgs.gammastep;
enable = true;
package = gammastep;
executable = "/bin/gammastep";
temperature = {
day = 6500;
@ -121,6 +123,6 @@ with pkgs;
# Enable WebRTC screensharing
xdg.portal = {
enable = true;
extraPortals = [ xdg-desktop-portal-wlr ];
extraPortals = with pkgs; [ xdg-desktop-portal-wlr ];
};
}