nix-git/hosts/yodaTux/configuration.nix

41 lines
1.2 KiB
Nix
Raw Normal View History

2023-09-02 15:44:33 +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`).
{ config, pkgs, ... }:
2023-09-07 22:15:58 +02:00
let
# Import Home Manager with niv.
home-manager = (import ../../nix/sources.nix).home-manager;
in
2023-09-02 15:44:33 +02:00
{
# Paths to other modules.
# Compose this module out of smaller ones.
# https://nixos.wiki/wiki/NixOS_modules
imports =
2023-09-07 22:15:58 +02:00
[
# Include the results of the hardware scan.
2023-09-02 15:44:33 +02:00
./hardware-configuration.nix
2023-09-07 22:15:58 +02:00
(import "${home-manager}/nixos")
../../modules/home-manager.nix
2023-09-02 15:44:33 +02:00
../../modules/base.nix
../../modules/programs.nix
2023-09-07 20:20:29 +02:00
../../modules/autostart.nix
2023-09-07 16:55:51 +02:00
../../modules/fwupd.nix
2023-09-02 15:44:33 +02:00
../../modules/print-and-scan.nix
../../modules/fde-ssh-unlock.nix
../../modules/nextcloud-integration.nix
2023-09-07 22:15:58 +02:00
../../modules/gnome-config.nix
../../modules/gnome-extensions.nix
../../modules/gnome-fractional-scaling.nix
../../modules/git.nix
../../modules/zsh.nix
../../modules/nitrokey-ssh-gpg.nix
../../modules/thunderbird.nix
2023-09-02 15:44:33 +02:00
];
networking.hostName = "yodaTux";
}