Compare commits

...

2 commits

Author SHA1 Message Date
756ec28e7d add akonadi and kontact persist directory
All checks were successful
Hydra nixosConfigurations.container-default-aarch64-linux Hydra build #24664 of nixos-config:pr618:nixosConfigurations.container-default-aarch64-linux
Hydra nixosConfigurations.container-default-x86_64-linux Hydra build #24666 of nixos-config:pr618:nixosConfigurations.container-default-x86_64-linux
Hydra nixosConfigurations.container-default-riscv64-linux Hydra build #24665 of nixos-config:pr618:nixosConfigurations.container-default-riscv64-linux
Hydra nixosConfigurations.not522 Hydra build #24667 of nixos-config:pr618:nixosConfigurations.not522
Hydra nixosConfigurations.not522-installer Hydra build #24668 of nixos-config:pr618:nixosConfigurations.not522-installer
Hydra nixosConfigurations.thinkrac Hydra build #24671 of nixos-config:pr618:nixosConfigurations.thinkrac
Hydra checks.x86_64-linux.containers-default Hydra build #24663 of nixos-config:pr618:checks.x86_64-linux.containers-default
Hydra nixosConfigurations.rainbow-resort Hydra build #24670 of nixos-config:pr618:nixosConfigurations.rainbow-resort
Hydra nixosConfigurations.pc-installer Hydra build #24669 of nixos-config:pr618:nixosConfigurations.pc-installer
2024-11-09 16:53:55 +01:00
88c0119862 Fix warnings 2024-11-09 15:40:07 +01:00
19 changed files with 8 additions and 22 deletions

View file

@ -1,6 +1,6 @@
# Unlike other modules in this directory, this one is not enabled by default # Unlike other modules in this directory, this one is not enabled by default
# The default graphical configuration would enable this, the verbose configuration would not. # The default graphical configuration would enable this, the verbose configuration would not.
{ config, ... }: { ... }:
{ {
boot = { boot = {
plymouth.enable = true; plymouth.enable = true;

View file

@ -1,6 +1,5 @@
{ {
nixos-config, nixos-config,
nixos-hardware,
nixpkgs, nixpkgs,
... ...
}: }:

View file

@ -1,10 +1,8 @@
{ {
nixos-config, nixos-config,
nixos-hardware,
config, config,
pureInputs, pureInputs,
pkgs, pkgs,
lib,
nixpkgs, nixpkgs,
... ...
}: }:

View file

@ -1,7 +1,6 @@
{ {
config, config,
nixos-config, nixos-config,
lib,
pkgs, pkgs,
pureInputs, pureInputs,
... ...

View file

@ -1,5 +1,4 @@
{ {
config,
nixos-config, nixos-config,
... ...
}: }:

View file

@ -1,5 +1,4 @@
{ {
config,
lib, lib,
... ...
}: }:

View file

@ -1,7 +1,5 @@
{ {
config,
nixos-config, nixos-config,
lib,
... ...
}: }:
{ {

View file

@ -1,7 +1,5 @@
{ {
config,
nixos-config, nixos-config,
lib,
... ...
}: }:
{ {

View file

@ -1,5 +1,4 @@
{ {
system,
config, config,
lib, lib,
pkgs, pkgs,
@ -19,6 +18,7 @@ in
options.autoContainers = mkOption { options.autoContainers = mkOption {
default = [ ]; default = [ ];
type = types.listOf types.str; type = types.listOf types.str;
description = "names of containers to automatically set up";
}; };
config = { config = {
containers = listToAttrs ( containers = listToAttrs (

View file

@ -2,7 +2,6 @@
disko, disko,
home-manager, home-manager,
lib, lib,
nur,
... ...
}: }:
with lib; with lib;

View file

@ -2,7 +2,6 @@
impermanence, impermanence,
config, config,
lib, lib,
pkgs,
inTester, inTester,
... ...
}: }:

View file

@ -2,7 +2,6 @@
config, config,
lib, lib,
pkgs, pkgs,
inTester,
... ...
}: }:
with lib; with lib;

View file

@ -1,6 +1,5 @@
{ {
sops-nix, sops-nix,
config,
... ...
}: }:
{ {

View file

@ -1,6 +1,5 @@
{ {
pkgs, pkgs,
config,
lib, lib,
nur, nur,
... ...

View file

@ -20,4 +20,9 @@
kdePackages.ffmpegthumbs kdePackages.ffmpegthumbs
kdePackages.dolphin-plugins kdePackages.dolphin-plugins
]; ];
home.persistence.default.directories = [
".local/share/akonadi"
".local/share/kontact"
];
} }

View file

@ -1,4 +1,4 @@
{ config, systemConfig, ... }: { ... }:
{ {
services.syncthing = { services.syncthing = {
enable = true; enable = true;

View file

@ -1,7 +1,6 @@
{ {
config, config,
pkgs, pkgs,
lib,
... ...
}: }:
let let

View file

@ -1,6 +1,5 @@
{ {
pkgs, pkgs,
config,
... ...
}: }:
{ {

View file

@ -1,7 +1,5 @@
{ {
callPackage,
testers, testers,
nixos-config,
inputs, inputs,
}: }:
testers.runNixOSTest { testers.runNixOSTest {