mirror of
https://github.com/kmein/niveum
synced 2026-03-21 12:21:08 +01:00
feat: factor out spacetime config
This commit is contained in:
@@ -91,13 +91,6 @@ in {
|
|||||||
boot.loader.timeout = 1;
|
boot.loader.timeout = 1;
|
||||||
boot.extraModulePackages = [ config.boot.kernelPackages.exfat-nofuse ];
|
boot.extraModulePackages = [ config.boot.kernelPackages.exfat-nofuse ];
|
||||||
}
|
}
|
||||||
{
|
|
||||||
time.timeZone = "Europe/Berlin";
|
|
||||||
location = {
|
|
||||||
latitude = 52.517;
|
|
||||||
longitude = 13.3872;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
{
|
{
|
||||||
home-manager.users.me = {
|
home-manager.users.me = {
|
||||||
programs.zathura = {
|
programs.zathura = {
|
||||||
@@ -305,14 +298,13 @@ in {
|
|||||||
./neovim.nix
|
./neovim.nix
|
||||||
./newsboat.nix
|
./newsboat.nix
|
||||||
./flameshot-once.nix
|
./flameshot-once.nix
|
||||||
./nixpkgs-unstable.nix
|
|
||||||
./packages
|
./packages
|
||||||
./printing.nix
|
./printing.nix
|
||||||
./wallpaper.nix
|
./wallpaper.nix
|
||||||
./redshift.nix
|
./redshift.nix
|
||||||
./retiolum.nix
|
./retiolum.nix
|
||||||
./rofi.nix
|
./rofi.nix
|
||||||
./spotify.nix
|
./spacetime.nix
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
./sudo.nix
|
./sudo.nix
|
||||||
./sxiv.nix
|
./sxiv.nix
|
||||||
|
|||||||
7
configs/spacetime.nix
Normal file
7
configs/spacetime.nix
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
time.timeZone = "Europe/Berlin";
|
||||||
|
location = {
|
||||||
|
latitude = 52.517;
|
||||||
|
longitude = 13.3872;
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -10,8 +10,8 @@ in {
|
|||||||
./hass
|
./hass
|
||||||
./telegram-bots
|
./telegram-bots
|
||||||
<niveum/configs/distrobump.nix>
|
<niveum/configs/distrobump.nix>
|
||||||
<niveum/configs/nixpkgs-unstable.nix>
|
|
||||||
<niveum/configs/nextcloud.nix>
|
<niveum/configs/nextcloud.nix>
|
||||||
|
<niveum/configs/spacetime.nix>
|
||||||
<niveum/configs/save-space.nix>
|
<niveum/configs/save-space.nix>
|
||||||
<niveum/configs/tmux.nix>
|
<niveum/configs/tmux.nix>
|
||||||
<niveum/configs/version.nix>
|
<niveum/configs/version.nix>
|
||||||
|
|||||||
@@ -17,8 +17,8 @@ in
|
|||||||
config = {
|
config = {
|
||||||
homeassistant = {
|
homeassistant = {
|
||||||
name = "Toum";
|
name = "Toum";
|
||||||
latitude = 52.461;
|
latitude = config.location.latitude;
|
||||||
longitude = 13.378;
|
longitude = config.location.longitude;
|
||||||
elevation = 90; # TODO find out how high I live
|
elevation = 90; # TODO find out how high I live
|
||||||
unit_system = "metric";
|
unit_system = "metric";
|
||||||
time_zone = config.time.timeZone;
|
time_zone = config.time.timeZone;
|
||||||
|
|||||||
Reference in New Issue
Block a user