This commit is contained in:
Sridhar Ratnakumar 2021-04-15 15:30:24 -04:00
parent be7ae1dc8b
commit 1ed4cc766e
7 changed files with 23 additions and 6 deletions

View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
time.timeZone = "America/New_York";
location = {
# Quebec City
latitude = 46.813359;
longitude = -71.215796;
};
}

View file

@ -8,6 +8,7 @@
./fonts.nix
./touchpad-trackpoint.nix
./autolock.nix
./redshift.nix
# WMish things
./xmonad

View file

@ -0,0 +1,9 @@
{ config, pkgs, ...}:
# Based on https://nixos.wiki/wiki/Redshift
{
services.redshift = {
enable = true;
};
}

View file

@ -7,6 +7,6 @@
ddcutil
# This can control the laptop display.
xorg.xbacklight
brightnessctl
];
}

View file

@ -27,6 +27,7 @@
configurationNix
# Features common to all of my machines
./features/current-location.nix
./features/passwordstore.nix
./features/syncthing.nix
./features/protonvpn.nix

View file

@ -47,9 +47,6 @@
networking.networkmanager.enable = true;
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Set your time zone.
time.timeZone = "America/New_York";
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
# Per-interface useDHCP will be mandatory in the future, so this generated config
# replicates the default behaviour.

View file

@ -41,8 +41,6 @@
trustedUsers = [ "root" "srid" ];
};
time.timeZone = "America/New_York";
networking.hostName = "x1c7";
networking.networkmanager.enable = true;