mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
move out common stuff again
This commit is contained in:
parent
c022eb979b
commit
c1e4cdb929
6
modules/_common/default.nix
Normal file
6
modules/_common/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{...}: {
|
||||||
|
imports = [
|
||||||
|
./i18n.nix
|
||||||
|
./nixpkgs.nix
|
||||||
|
];
|
||||||
|
}
|
|
@ -8,10 +8,9 @@
|
||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
<home-manager/nixos>
|
<home-manager/nixos>
|
||||||
|
../_common
|
||||||
./gnome.nix
|
./gnome.nix
|
||||||
./kde.nix
|
./kde.nix
|
||||||
./i18n.nix
|
|
||||||
./nixpkgs.nix
|
|
||||||
./vinzenz.nix
|
./vinzenz.nix
|
||||||
./ronja.nix
|
./ronja.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -6,7 +6,9 @@
|
||||||
}: let
|
}: let
|
||||||
cfg = config.my.server;
|
cfg = config.my.server;
|
||||||
in {
|
in {
|
||||||
imports = [];
|
imports = [
|
||||||
|
../_common
|
||||||
|
];
|
||||||
|
|
||||||
options.my.server = {
|
options.my.server = {
|
||||||
enable = lib.mkEnableOption "server role";
|
enable = lib.mkEnableOption "server role";
|
||||||
|
@ -23,7 +25,6 @@ in {
|
||||||
KbdInteractiveAuthentication = false;
|
KbdInteractiveAuthentication = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
|
Loading…
Reference in a new issue