refresh homescreen

This commit is contained in:
Cyryl Płotnicki 2023-04-29 12:59:16 +01:00
parent 935535f629
commit 0ba7ded953
2 changed files with 8 additions and 47 deletions

View file

@ -1,10 +1,4 @@
{ { config, pkgs, inputs, lib, ... }: {
config,
pkgs,
inputs,
lib,
...
}: {
imports = [ inputs.nixos-hardware.nixosModules.raspberry-pi-4 ]; imports = [ inputs.nixos-hardware.nixosModules.raspberry-pi-4 ];
networking = { networking = {
@ -60,7 +54,7 @@
security.allowUserNamespaces = true; security.allowUserNamespaces = true;
time.timeZone = "Europe/London"; time.timeZone = "Europe/London";
system.stateVersion = "22.05"; system.stateVersion = "22.11";
nix = { nix = {
settings.auto-optimise-store = true; settings.auto-optimise-store = true;

View file

@ -1,33 +0,0 @@
{
config,
pkgs,
...
}: {
services.home-assistant = {
enable = true;
openFirewall = true;
package =
(pkgs.home-assistant.override {
extraPackages = ps: with ps; [];
extraComponents = [
"api"
"auth"
"cloud"
"config"
"default_config"
"http"
"mobile_app"
"onboarding"
"search"
"ssdp"
"system_log"
"tts"
"websocket_api"
"zeroconf"
"zwave"
];
})
.overridePythonAttrs {doCheck = false;};
};
}