2023-09-17 16:59:42 +02:00
|
|
|
|
{ config, pkgs, ... }:
|
2023-08-15 19:13:43 +02:00
|
|
|
|
{
|
|
|
|
|
imports =
|
2023-09-07 22:15:58 +02:00
|
|
|
|
[
|
2023-08-15 19:13:43 +02:00
|
|
|
|
./hardware-configuration.nix
|
2023-09-07 22:15:58 +02:00
|
|
|
|
../../modules/home-manager.nix
|
2023-10-20 15:01:12 +02:00
|
|
|
|
../../modules/nur-and-unstable.nix
|
2023-09-02 15:33:36 +02:00
|
|
|
|
../../modules/base.nix
|
2023-12-21 18:21:12 +01:00
|
|
|
|
../../modules/power-management.nix
|
2023-11-21 12:07:43 +01:00
|
|
|
|
../../modules/ntfs.nix
|
|
|
|
|
../../modules/git.nix
|
|
|
|
|
../../modules/zsh.nix
|
|
|
|
|
../../modules/nitrokey-gpg-smartcard.nix
|
|
|
|
|
../../modules/ssh-client.nix
|
|
|
|
|
../../modules/ssh-server.nix
|
|
|
|
|
../../modules/lid-switch-handling.nix
|
|
|
|
|
|
|
|
|
|
../../modules/btrfs-scrub.nix
|
|
|
|
|
../../modules/btrfs-mount-options.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
|
2024-01-13 22:04:09 +01:00
|
|
|
|
#../../modules/gnome-terminal.nix
|
2023-10-09 12:13:36 +02:00
|
|
|
|
../../modules/gnome-extensions.nix
|
2023-11-21 12:07:43 +01:00
|
|
|
|
# Not required as display scale is set 2.0 (multiple of 1).
|
2023-10-09 12:13:36 +02:00
|
|
|
|
#../../modules/gnome-fractional-scaling.nix
|
2023-11-21 12:07:43 +01:00
|
|
|
|
../../modules/fwupd-gnome.nix
|
|
|
|
|
../../modules/wallpaper.nix
|
2023-10-09 12:13:36 +02:00
|
|
|
|
|
2023-09-02 15:12:08 +02:00
|
|
|
|
../../modules/programs.nix
|
2024-01-13 22:04:09 +01:00
|
|
|
|
../../modules/blackbox.nix
|
2023-11-21 12:07:43 +01:00
|
|
|
|
../../modules/nextcloud-integration.nix
|
2023-11-28 15:24:57 +01:00
|
|
|
|
../../modules/syncthing.nix
|
2023-10-18 13:29:14 +02:00
|
|
|
|
../../modules/signal-desktop.nix
|
2023-11-28 15:23:44 +01:00
|
|
|
|
../../modules/obsidian.nix
|
2024-01-07 22:35:38 +01:00
|
|
|
|
../../modules/vlc-dvd-blu-ray.nix
|
2023-09-11 13:05:48 +02:00
|
|
|
|
../../modules/firefox.nix
|
2023-09-07 22:15:58 +02:00
|
|
|
|
../../modules/thunderbird.nix
|
2023-11-21 12:07:43 +01:00
|
|
|
|
../../modules/tor-browser.nix
|
2023-12-19 14:03:39 +01:00
|
|
|
|
#../../modules/digikam-rawtherapee-hugin-gimp.nix
|
2023-11-21 12:07:43 +01:00
|
|
|
|
../../modules/freetube.nix
|
2023-10-06 12:04:48 +02:00
|
|
|
|
../../modules/ghostwriter.nix
|
2023-11-21 12:07:43 +01:00
|
|
|
|
../../modules/print-and-scan.nix
|
|
|
|
|
#../../modules/waydroid.nix
|
2023-11-14 18:59:31 +01:00
|
|
|
|
|
2023-11-21 12:07:43 +01:00
|
|
|
|
../../modules/autostart.nix
|
2023-10-08 22:02:21 +02:00
|
|
|
|
|
2023-11-21 12:07:43 +01:00
|
|
|
|
../../modules/jetbrains-ide.nix
|
2024-01-04 11:23:51 +01:00
|
|
|
|
|
|
|
|
|
#../../modules/podman.nix
|
|
|
|
|
#../../modules/docker.nix
|
|
|
|
|
#../../modules/docker-pushrm.nix
|
2023-08-15 19:13:43 +02:00
|
|
|
|
];
|
|
|
|
|
|
2023-08-31 15:24:08 +02:00
|
|
|
|
networking.hostName = "yodaTab";
|
2023-09-25 21:21:53 +02:00
|
|
|
|
boot.initrd.luks.devices."luks-ba8b94d0-7f70-496a-ad87-eadc5e852aad".allowDiscards = true;
|
|
|
|
|
boot.initrd.luks.devices."512gb".allowDiscards = true;
|
2023-10-09 10:46:57 +02:00
|
|
|
|
yoda.btrfsFileSystems = ["/"];
|
|
|
|
|
#yoda.btrfsMounts = yoda.btrfsFileSystems;
|
2023-10-09 11:35:35 +02:00
|
|
|
|
fileSystems."/mnt/512gb".options = [ "noatime" "commit=60" ]; # Ext4
|
2023-09-20 22:23:48 +02:00
|
|
|
|
|
2023-09-23 17:58:12 +02:00
|
|
|
|
boot.kernelParams = [];
|
2023-09-20 22:23:48 +02:00
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
2023-12-15 13:03:18 +01:00
|
|
|
|
|
|
|
|
|
# Most users should never change this value after the initial install, for any reason, even if you’ve upgraded your system to a new NixOS release.
|
|
|
|
|
system.stateVersion = "23.05";
|
2023-08-15 19:13:43 +02:00
|
|
|
|
}
|