Compare commits
2 commits
73b74531a2
...
756ec28e7d
Author | SHA1 | Date | |
---|---|---|---|
756ec28e7d | |||
88c0119862 |
19 changed files with 8 additions and 22 deletions
|
@ -1,6 +1,6 @@
|
|||
# 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.
|
||||
{ config, ... }:
|
||||
{ ... }:
|
||||
{
|
||||
boot = {
|
||||
plymouth.enable = true;
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
nixos-config,
|
||||
nixos-hardware,
|
||||
nixpkgs,
|
||||
...
|
||||
}:
|
||||
|
|
|
@ -1,10 +1,8 @@
|
|||
{
|
||||
nixos-config,
|
||||
nixos-hardware,
|
||||
config,
|
||||
pureInputs,
|
||||
pkgs,
|
||||
lib,
|
||||
nixpkgs,
|
||||
...
|
||||
}:
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
config,
|
||||
nixos-config,
|
||||
lib,
|
||||
pkgs,
|
||||
pureInputs,
|
||||
...
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
config,
|
||||
nixos-config,
|
||||
...
|
||||
}:
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
{
|
||||
config,
|
||||
nixos-config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
{
|
||||
config,
|
||||
nixos-config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
system,
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
|
@ -19,6 +18,7 @@ in
|
|||
options.autoContainers = mkOption {
|
||||
default = [ ];
|
||||
type = types.listOf types.str;
|
||||
description = "names of containers to automatically set up";
|
||||
};
|
||||
config = {
|
||||
containers = listToAttrs (
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
disko,
|
||||
home-manager,
|
||||
lib,
|
||||
nur,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
impermanence,
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
inTester,
|
||||
...
|
||||
}:
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
inTester,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
sops-nix,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
nur,
|
||||
...
|
||||
|
|
|
@ -20,4 +20,9 @@
|
|||
kdePackages.ffmpegthumbs
|
||||
kdePackages.dolphin-plugins
|
||||
];
|
||||
|
||||
home.persistence.default.directories = [
|
||||
".local/share/akonadi"
|
||||
".local/share/kontact"
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, systemConfig, ... }:
|
||||
{ ... }:
|
||||
{
|
||||
services.syncthing = {
|
||||
enable = true;
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
let
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
{
|
||||
callPackage,
|
||||
testers,
|
||||
nixos-config,
|
||||
inputs,
|
||||
}:
|
||||
testers.runNixOSTest {
|
||||
|
|
Loading…
Reference in a new issue