2023-08-15 19:13:43 +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
|
2023-08-28 17:19:58 +02:00
|
|
|
# and in the NixOS manual (accessible by running `nixos-help`).
|
2023-08-15 19:13:43 +02:00
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2023-08-31 14:19:26 +02:00
|
|
|
# Paths to other modules.
|
|
|
|
# Compose this module out of smaller ones.
|
|
|
|
# https://nixos.wiki/wiki/NixOS_modules
|
2023-08-15 19:13:43 +02:00
|
|
|
imports =
|
|
|
|
[ # Include the results of the hardware scan.
|
|
|
|
./hardware-configuration.nix
|
2023-08-15 20:55:27 +02:00
|
|
|
./home-manager.nix
|
2023-09-02 15:33:36 +02:00
|
|
|
../../modules/base.nix
|
2023-09-02 15:12:08 +02:00
|
|
|
../../modules/programs.nix
|
|
|
|
../../modules/git.nix
|
2023-09-02 15:33:36 +02:00
|
|
|
../../modules/zsh.nix
|
2023-09-02 15:12:08 +02:00
|
|
|
../../modules/print-and-scan.nix
|
|
|
|
../../modules/nitrokey-ssh-gpg.nix
|
|
|
|
../../modules/fde-ssh-unlock.nix
|
|
|
|
../../modules/nextcloud-integration.nix
|
2023-08-15 19:13:43 +02:00
|
|
|
];
|
|
|
|
|
2023-08-31 15:24:08 +02:00
|
|
|
networking.hostName = "yodaTab";
|
2023-08-15 19:13:43 +02:00
|
|
|
}
|