deadnix + statix
This commit is contained in:
parent
745034aaeb
commit
9615226318
2
base.nix
2
base.nix
@ -32,7 +32,7 @@
|
|||||||
users.jawz = import ./home-manager.nix;
|
users.jawz = import ./home-manager.nix;
|
||||||
};
|
};
|
||||||
time = {
|
time = {
|
||||||
timeZone = config.my.timeZone;
|
inherit (config.my) timeZone;
|
||||||
hardwareClockInLocalTime = true;
|
hardwareClockInLocalTime = true;
|
||||||
};
|
};
|
||||||
i18n = {
|
i18n = {
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{ pkgs, ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
|||||||
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
inputs,
|
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
|||||||
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
inputs,
|
|
||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
|||||||
@ -9,7 +9,7 @@ in
|
|||||||
# sops.secrets.firefox-syncserver.sopsFile = ../../secrets/env.yaml;
|
# sops.secrets.firefox-syncserver.sopsFile = ../../secrets/env.yaml;
|
||||||
services = {
|
services = {
|
||||||
firefox-syncserver = {
|
firefox-syncserver = {
|
||||||
enable = cfg.enable;
|
inherit (cfg) enable;
|
||||||
# secrets = config.sops.secrets.firefox-syncserver;
|
# secrets = config.sops.secrets.firefox-syncserver;
|
||||||
settings.port = cfg.port;
|
settings.port = cfg.port;
|
||||||
singleNode = {
|
singleNode = {
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
view = "monthly";
|
view = "monthly";
|
||||||
maxEvents = 10;
|
maxEvents = 10;
|
||||||
showTime = true;
|
showTime = true;
|
||||||
timezone = config.my.timezone;
|
inherit (config.my) timezone;
|
||||||
integrations =
|
integrations =
|
||||||
let
|
let
|
||||||
createIntegration = name: color: {
|
createIntegration = name: color: {
|
||||||
|
|||||||
@ -9,7 +9,7 @@ in
|
|||||||
sops.secrets.readeck.sopsFile = ../../secrets/env.yaml;
|
sops.secrets.readeck.sopsFile = ../../secrets/env.yaml;
|
||||||
services = {
|
services = {
|
||||||
readeck = {
|
readeck = {
|
||||||
enable = cfg.enable;
|
inherit (cfg) enable;
|
||||||
environmentFile = config.sops.secrets.readeck.path;
|
environmentFile = config.sops.secrets.readeck.path;
|
||||||
settings = {
|
settings = {
|
||||||
main = {
|
main = {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user