Compare commits

..

No commits in common. "30fe4d0dc6432a0a113fece8dae2ebd7352256a7" and "613d29a89b80f0ae870f058017afba662a41ce21" have entirely different histories.

5 changed files with 11 additions and 19 deletions

View file

@ -203,11 +203,6 @@
}; };
security.rtkit.enable = true; security.rtkit.enable = true;
virtualisation.podman.enable = true; virtualisation.podman.enable = true;
location = {
latitude = 51.7;
longitude = -1.2;
provider = "manual";
};
time.timeZone = "Europe/London"; time.timeZone = "Europe/London";
i18n.defaultLocale = "en_GB.UTF-8"; i18n.defaultLocale = "en_GB.UTF-8";
console.useXkbConfig = true; console.useXkbConfig = true;

View file

@ -281,7 +281,7 @@
}, },
{ {
"name": "OneDrive", "name": "OneDrive",
"url": "https://ukaeauk-my.sharepoint.com/", "url": "https://ukaeauk-my.sharepoint.com/personal/evie_litherland-smith_ukaea_uk/",
"tags": ["Work", "Office"] "tags": ["Work", "Office"]
}, },
{ {

View file

@ -1,9 +1,4 @@
{ { config, pkgs, ... }:
config,
pkgs,
osConfig,
...
}:
{ {
imports = [ imports = [
./hyprland.nix ./hyprland.nix
@ -34,9 +29,11 @@
services = { services = {
syncthing.enable = true; syncthing.enable = true;
gammastep = { gammastep = {
inherit (osConfig.location) latitude longitude provider;
enable = true; enable = true;
tray = true; tray = true;
provider = "manual";
latitude = 51.7;
longitude = -1.2;
}; };
}; };
gtk = { gtk = {

View file

@ -2,7 +2,6 @@
config, config,
pkgs, pkgs,
inputs, inputs,
osConfig,
... ...
}: }:
{ {
@ -339,8 +338,8 @@
NightColor = { NightColor = {
Active = true; Active = true;
Mode = "Location"; Mode = "Location";
LatitudeFixed = "${osConfig.location.latitude}"; LatitudeFixed = "51.7";
LongitudeFixed = "${osConfig.location.longitude}"; LongitudeFixed = "-1.2";
}; };
"Effect-translucency" = { "Effect-translucency" = {
Inactive = 100; Inactive = 100;

View file

@ -262,10 +262,10 @@
"custom/weather" = "custom/weather" =
let let
date-format = "%Y-%m-%d"; date-format = "%Y-%m-%d";
custom-indicator = "{ICON}{temp_C}°C({FeelsLikeC}°C)"; custom-indicator = "{ICON}{temp_C}({FeelsLikeC})";
in in
{ {
format = "{}"; format = "{}°";
tooltip = true; tooltip = true;
interval = 900; # Every 15 minutes interval = 900; # Every 15 minutes
exec = ''${pkgs.wttrbar}/bin/wttrbar --location Didcot --date-format "${date-format}" --custom-indicator "${custom-indicator}"''; exec = ''${pkgs.wttrbar}/bin/wttrbar --location Didcot --date-format "${date-format}" --custom-indicator "${custom-indicator}"'';
@ -280,6 +280,7 @@
style = style =
let let
scheme = config.lib.stylix.scheme.withHashtag; scheme = config.lib.stylix.scheme.withHashtag;
alpha = "0.8";
in in
'' ''
* { * {
@ -304,7 +305,7 @@
} }
tooltip { tooltip {
background: ${scheme.base00}; background: alpha(${scheme.base00}, ${alpha});
border: 1px solid ${scheme.base0E}; border: 1px solid ${scheme.base0E};
border-radius: 5px; border-radius: 5px;
box-shadow: none; box-shadow: none;