Make changes for release 19.09
Alan Pearce alan@alanpearce.eu
Thu, 10 Oct 2019 16:27:58 +0200
8 files changed, 12 insertions(+), 22 deletions(-)
jump to
M system/settings/configuration/berlin.nix → system/settings/configuration/berlin.nix
@@ -1,8 +1,8 @@ { config, pkgs, ... }: { time.timeZone = "Europe/Berlin"; - services.redshift = { - latitude = "52.586"; - longitude = "13.300"; + location = { + latitude = 52.586; + longitude = 13.300; }; }
M system/settings/configuration/england.nix → system/settings/configuration/england.nix
@@ -2,7 +2,7 @@ { config, pkgs, ... }: { time.timeZone = "Europe/London"; services.redshift = { - latitude = "52.2394"; - longitude = "-0.9416"; + latitude = 52.2394; + longitude = -0.9416; }; }
M system/settings/hardware/intel-gpu.nix → system/settings/hardware/intel-gpu.nix
@@ -6,8 +6,6 @@ vaapiVdpau libvdpau-va-gl ]; - services.xserver.videoDrivers = [ "intel" "modesetting" ]; - boot.earlyVconsoleSetup = true; boot.initrd.kernelModules = [ "i915"
M system/settings/hardware/laptop.nix → system/settings/hardware/laptop.nix
@@ -17,17 +17,8 @@ pulseaudio-modules-bt ]; }; }; - systemd.services.bluetooth.wantedBy = lib.mkForce []; - systemd.timers.bluetooth = { - description = "Delayed startup of Bluetooth"; - wantedBy = [ "timers.target" ]; - timerConfig = { - OnActiveSec = "1 min"; - }; - }; environment.systemPackages = with pkgs; [ - blueman bluez-tools powerstat @@ -65,6 +56,10 @@ DEVICES_TO_DISABLE_ON_BAT_NOT_IN_USE="bluetooth wwan" ''; }; + services.blueman = { + enable = true; + }; + services.xserver = { libinput = { enable = lib.mkDefault true; @@ -73,7 +68,6 @@ disableWhileTyping = true; }; displayManager.sessionCommands = '' ${pkgs.autorandr}/bin/autorandr --change --force - ${pkgs.blueman}/bin/blueman-applet & ''; };
M system/settings/programs/gnome.nix → system/settings/programs/gnome.nix
@@ -6,7 +6,6 @@ gnome3 = { gnome-documents.enable = false; gnome-user-share.enable = false; gnome-online-accounts.enable = false; - seahorse.enable = false; tracker.enable = false; }; telepathy.enable = false;
M system/settings/programs/window-manager.nix → system/settings/programs/window-manager.nix
@@ -27,7 +27,7 @@ }; services.xserver.displayManager.setupCommands = '' ${pkgs.redshift}/bin/redshift \ - -l ${toString config.services.redshift.latitude}:${toString config.services.redshift.longitude} \ + -l ${toString config.location.latitude}:${toString config.location.longitude} \ -t ${toString config.services.redshift.temperature.day}:${toString config.services.redshift.temperature.night} \ -b 1:1 \ -o \
M system/settings/user-interface.nix → system/settings/user-interface.nix
@@ -41,7 +41,7 @@ services.compton = { enable = true; backend = "glx"; - vSync = "opengl-swc"; + vSync = true; }; services.devmon.enable = true; @@ -80,9 +80,9 @@ programs.ssh.startAgent = true; programs.dconf.enable = true; + programs.seahorse.enable = true; services.gnome3 = { gnome-keyring.enable = true; - seahorse.enable = true; at-spi2-core.enable = true; };
M user/settings/development/base.nix → user/settings/development/base.nix
@@ -21,7 +21,6 @@ if !stdenv.isDarwin then [ ldns httping - http-prompt firefox-devedition-bin ] else [ ]