nix-git/hosts/yodaTab/configuration.nix

54 lines
1.7 KiB
Nix
Raw Normal View History

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-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-02 15:12:08 +02:00
../../modules/programs.nix
2023-10-18 17:47:26 +02:00
../../modules/freetube.nix
../../modules/jetbrains-ide.nix
../../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-07 20:20:29 +02:00
../../modules/autostart.nix
2023-09-11 18:08:28 +02:00
../../modules/wallpaper.nix
2023-09-14 11:53:32 +02:00
../../modules/fwupd-gnome.nix
2023-09-02 15:12:08 +02:00
../../modules/print-and-scan.nix
../../modules/nextcloud-integration.nix
2023-09-07 22:15:58 +02:00
../../modules/git.nix
../../modules/zsh.nix
2023-09-11 14:05:02 +02:00
../../modules/nitrokey-gpg-smartcard.nix
2023-09-16 12:14:53 +02:00
../../modules/ssh-client.nix
../../modules/ssh-server.nix
2023-09-11 13:05:48 +02:00
../../modules/firefox.nix
2023-09-07 22:15:58 +02:00
../../modules/thunderbird.nix
2023-09-16 15:17:17 +02:00
#../../modules/digikam-rawtherapee.nix
2023-10-06 12:04:48 +02:00
../../modules/ghostwriter.nix
2023-11-14 18:59:31 +01:00
2023-09-16 17:23:06 +02:00
../../modules/lid-switch-handling.nix
2023-09-20 13:37:48 +02:00
../../modules/ntfs.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-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-08-15 19:13:43 +02:00
}