nix-git/hosts/yodaYoga/configuration.nix

61 lines
1.9 KiB
Nix
Raw Normal View History

2023-09-14 11:54:51 +02:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running `nixos-help`).
2023-09-17 16:59:42 +02:00
{ config, pkgs, ... }:
2023-09-14 11:54:51 +02:00
let
# Import Home Manager with niv.
home-manager = (import ../../nix/sources.nix).home-manager;
2023-09-15 21:57:33 +02:00
#home-manager-source = import (import ../../nix/sources.nix).home-manager {};
2023-09-14 11:54:51 +02:00
in
{
# Paths to other modules.
# Compose this module out of smaller ones.
# https://nixos.wiki/wiki/NixOS_modules
imports =
[
# Include the results of the hardware scan.
./hardware-configuration.nix
# Home Manager.
(import "${home-manager}/nixos")
2023-09-15 21:57:33 +02:00
#home-manager-source.nixos
2023-09-14 11:54:51 +02:00
../../modules/home-manager.nix
# NUR.
../../modules/nur.nix
# Device specific.
../../modules/yodaYoga.nix
../../modules/base.nix
#../../modules/base-gnome.nix
#../../modules/programs.nix
#../../modules/autostart.nix
#../../modules/wallpaper.nix
#../../modules/fwupd-gnome.nix
#../../modules/print-and-scan.nix
2023-09-15 14:54:23 +02:00
../../modules/fde-ssh-unlock.nix
2023-09-14 11:54:51 +02:00
#../../modules/nextcloud-integration.nix
#../../modules/gnome-config.nix
#../../modules/gnome-extensions.nix
#../../modules/gnome-fractional-scaling.nix
#../../modules/git.nix
../../modules/zsh.nix
#../../modules/nitrokey-gpg-smartcard.nix
2023-09-16 12:14:53 +02:00
#../../modules/ssh-client.nix
../../modules/ssh-server.nix
2023-09-14 11:54:51 +02:00
#../../modules/firefox.nix
#../../modules/thunderbird.nix
2023-09-16 15:17:17 +02:00
#../../modules/digikam-rawtherapee.nix
2023-09-14 11:54:51 +02:00
#../../modules/android.nix
2023-09-14 15:54:48 +02:00
#../../modules/podman.nix
../../modules/docker.nix
2023-09-16 17:23:06 +02:00
../../modules/lid-switch-handling.nix
../../modules/sendmail-mta.nix
../../modules/journalwatch.nix
2023-09-14 11:54:51 +02:00
];
networking.hostName = "yodaYoga";
2023-09-15 21:31:07 +02:00
services.openssh.ports = [ 2224 ];
boot.initrd.network.ssh.port = 2225;
2023-09-14 11:54:51 +02:00
}