move host specific module imports into hosts default.nix
This commit is contained in:
parent
e04f33e50c
commit
0bb0018450
5 changed files with 30 additions and 42 deletions
|
|
@ -1,7 +1,9 @@
|
|||
{ my-nixos-modules, ... }:
|
||||
{
|
||||
imports = [
|
||||
./hardware.nix
|
||||
./forgejo-runner.nix
|
||||
my-nixos-modules.podman
|
||||
];
|
||||
|
||||
config = {
|
||||
|
|
|
|||
|
|
@ -1,11 +1,17 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
my-nixos-modules,
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = [
|
||||
./hardware.nix
|
||||
my-nixos-modules.user-ronja
|
||||
my-nixos-modules.gnome
|
||||
my-nixos-modules.steam
|
||||
my-nixos-modules.wine-gaming
|
||||
my-nixos-modules.vinzenz-desktop-settings
|
||||
];
|
||||
|
||||
config = {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,15 @@
|
|||
{ my-nixos-modules, ... }:
|
||||
{
|
||||
imports = [
|
||||
./hardware.nix
|
||||
my-nixos-modules.user-vinzenz
|
||||
my-nixos-modules.gnome
|
||||
my-nixos-modules.wine-gaming
|
||||
my-nixos-modules.steam
|
||||
my-nixos-modules.podman
|
||||
my-nixos-modules.vinzenz-desktop-settings
|
||||
my-nixos-modules.intel-graphics
|
||||
my-nixos-modules.secure-boot
|
||||
];
|
||||
|
||||
config = {
|
||||
|
|
|
|||
|
|
@ -1,9 +1,18 @@
|
|||
{ pkgs, ... }:
|
||||
{ pkgs, my-nixos-modules, ... }:
|
||||
{
|
||||
imports = [
|
||||
./hardware.nix
|
||||
./vscode-server.nix
|
||||
./hass.nix
|
||||
|
||||
my-nixos-modules.user-vinzenz
|
||||
my-nixos-modules.gnome
|
||||
my-nixos-modules.wine-gaming
|
||||
my-nixos-modules.steam
|
||||
my-nixos-modules.podman
|
||||
my-nixos-modules.vinzenz-desktop-settings
|
||||
my-nixos-modules.amd-graphics
|
||||
my-nixos-modules.secure-boot
|
||||
];
|
||||
|
||||
config = {
|
||||
|
|
@ -27,11 +36,6 @@
|
|||
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPDNpLDmctyqGpow/ElQvdhY4BLBPS/sigDJ1QEcC7wC vinzenz-lpt2-roaming''
|
||||
];
|
||||
|
||||
users.users.ronja.openssh.authorizedKeys.keys = [
|
||||
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIALWKm+d6KL6Vl3grPOcGouiNTkvdhXuWJmcrdEBY2nw ssh-host-key''
|
||||
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEgN6J8KyVyQqBAz+y3drXDmIsxOPkdPB+ISgpIP9Eld Generated By Termius''
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [ lact ];
|
||||
|
||||
networking.firewall.allowedUDPPorts = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue