2023-09-23 18:36:27 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[
|
|
|
|
./hardware-configuration.nix
|
2023-10-09 12:37:26 +02:00
|
|
|
./host-specific.nix
|
2023-09-23 18:36:27 +02:00
|
|
|
../../modules/home-manager.nix
|
2023-10-20 15:01:12 +02:00
|
|
|
../../modules/nur-and-unstable.nix
|
2023-09-23 18:36:27 +02:00
|
|
|
../../modules/base.nix
|
2023-10-09 12:05:56 +02:00
|
|
|
../../modules/headless.nix
|
2023-10-09 12:13:36 +02:00
|
|
|
|
2023-10-09 12:05:56 +02:00
|
|
|
#../../modules/gnome-base.nix
|
2023-10-09 12:13:36 +02:00
|
|
|
#../../modules/gnome-config.nix
|
|
|
|
#../../modules/gnome-extensions.nix
|
|
|
|
#../../modules/gnome-fractional-scaling.nix
|
|
|
|
|
2023-09-23 18:36:27 +02:00
|
|
|
#../../modules/programs.nix
|
2023-10-12 22:38:03 +02:00
|
|
|
#../../modules/boxes.nix
|
2023-10-18 17:47:26 +02:00
|
|
|
#../../modules/freetube.nix
|
2023-10-19 11:56:37 +02:00
|
|
|
#../../modules/vscodium.nix
|
2023-10-18 13:29:14 +02:00
|
|
|
#../../modules/signal-desktop.nix
|
|
|
|
#../../modules/element-desktop.nix
|
2023-10-20 14:58:29 +02:00
|
|
|
#../../modules/joplin-desktop.nix
|
2023-10-18 17:23:39 +02:00
|
|
|
#../../modules/tor-browser.nix
|
2023-09-23 18:36:27 +02:00
|
|
|
#../../modules/autostart.nix
|
|
|
|
#../../modules/wallpaper.nix
|
|
|
|
#../../modules/fwupd-gnome.nix
|
|
|
|
#../../modules/print-and-scan.nix
|
2023-09-26 18:51:17 +02:00
|
|
|
../../modules/fde-ssh-unlock.nix
|
2023-09-23 18:36:27 +02:00
|
|
|
#../../modules/nextcloud-integration.nix
|
|
|
|
#../../modules/git.nix
|
|
|
|
../../modules/zsh.nix
|
|
|
|
#../../modules/nitrokey-gpg-smartcard.nix
|
|
|
|
#../../modules/ssh-client.nix
|
|
|
|
../../modules/ssh-server.nix
|
|
|
|
#../../modules/firefox.nix
|
|
|
|
#../../modules/thunderbird.nix
|
|
|
|
#../../modules/digikam-rawtherapee.nix
|
2023-10-06 12:04:48 +02:00
|
|
|
#../../modules/ghostwriter.nix
|
2023-09-23 18:36:27 +02:00
|
|
|
#../../modules/android.nix
|
|
|
|
#../../modules/podman.nix
|
|
|
|
../../modules/docker.nix
|
|
|
|
#../../modules/docker-pushrm.nix
|
|
|
|
#../../modules/lid-switch-handling.nix
|
|
|
|
../../modules/sendmail-mta.nix
|
|
|
|
../../modules/journalwatch.nix
|
|
|
|
#../../modules/waydroid.nix
|
|
|
|
#../../modules/ntfs.nix
|
2023-09-27 18:56:12 +02:00
|
|
|
#../../modules/veracrypt.nix
|
|
|
|
../../modules/btrbk
|
2023-10-03 12:48:52 +02:00
|
|
|
../../modules/spin-down.nix
|
2023-10-08 22:02:21 +02:00
|
|
|
|
|
|
|
../../modules/btrfs-scrub.nix
|
2023-10-09 10:46:57 +02:00
|
|
|
../../modules/btrfs-mount-options.nix
|
2023-09-23 18:36:27 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
networking.hostName = "yodaNas";
|
2023-09-26 18:21:57 +02:00
|
|
|
boot.initrd.luks.devices."luks-3d974bd0-f373-469b-8e9c-2d5516e9f0f5".allowDiscards = true;
|
2023-10-09 10:46:57 +02:00
|
|
|
yoda.btrfsFileSystems = ["/" "/mnt/data" "/mnt/backup"];
|
|
|
|
#yoda.btrfsMounts = yoda.btrfsFileSystems;
|
2023-09-23 18:36:27 +02:00
|
|
|
|
|
|
|
boot.kernelParams = [];
|
|
|
|
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages;
|
|
|
|
}
|