mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
77 lines
2.4 KiB
Nix
77 lines
2.4 KiB
Nix
# 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, ... }:
|
|
let
|
|
# Import Home Manager with niv.
|
|
home-manager = (import ../../nix/sources.nix).home-manager;
|
|
#home-manager-source = import (import ../../nix/sources.nix).home-manager {};
|
|
in
|
|
{
|
|
# Paths to other modules.
|
|
# Compose this module out of smaller ones.
|
|
# https://nixos.wiki/wiki/NixOS_modules
|
|
imports =
|
|
[
|
|
# Include the results of the hardware scan.
|
|
./hardware-configuration.nix
|
|
# Home Manager.
|
|
(import "${home-manager}/nixos")
|
|
#home-manager-source.nixos
|
|
../../modules/home-manager.nix
|
|
# NUR.
|
|
../../modules/nur.nix
|
|
|
|
../../modules/base.nix
|
|
#../../modules/base-headless.nix
|
|
../../modules/base-gnome.nix
|
|
../../modules/programs.nix
|
|
../../modules/autostart.nix
|
|
../../modules/wallpaper.nix
|
|
../../modules/fwupd-gnome.nix
|
|
../../modules/print-and-scan.nix
|
|
#../../modules/fde-ssh-unlock.nix
|
|
../../modules/nextcloud-integration.nix
|
|
|
|
../../modules/gnome-config.nix
|
|
../../modules/gnome-extensions.nix
|
|
#../../modules/gnome-fractional-scaling.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
|
|
../../modules/ghostwriter.nix
|
|
#../../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
|
|
#../../modules/veracrypt.nix
|
|
#../../modules/btrbk
|
|
#../../modules/spin-down.nix
|
|
];
|
|
|
|
networking.hostName = "yodaTab";
|
|
boot.initrd.luks.devices."luks-ba8b94d0-7f70-496a-ad87-eadc5e852aad".allowDiscards = true;
|
|
boot.initrd.luks.devices."512gb".allowDiscards = true;
|
|
|
|
boot.kernelParams = [];
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
|
|
# TODO: For "/" this cfg resides in base.nix
|
|
fileSystems = {
|
|
# Ext4 not BTRFS
|
|
"/mnt/512gb".options = [ "noatime" "commit=60" ];
|
|
};
|
|
}
|