205a1ccc8f
- Add prepare-commit-msg git hook that generates conventional commit messages - Modularize fish configuration with separate conf.d files - Convert configuration files from .text to .source format for structured data - Add sops-nix SOPS configuration with explicit secret definitions - Upgrade age identity to single key file management approach - Add system activation script for age key management - Generate .sops.yaml for SOPS creation rules - Restructure README.md with improved table and cleaner formatting - Refactor config files to use pkgs.formats.json/toml generators - Implement YAML format for ashell and walker service configurations - Update SSH config source to use sops secrets - Convert zed and other config files to use structured .source format
38 lines
612 B
Nix
38 lines
612 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
boot = {
|
|
initrd.systemd.enable = true;
|
|
|
|
supportedFilesystems = ["ntfs"];
|
|
|
|
kernelPackages = pkgs.linuxPackages_latest;
|
|
|
|
consoleLogLevel = 3;
|
|
|
|
kernelParams = [
|
|
"quiet"
|
|
"systemd.show_status=auto"
|
|
"rd.udev.log_level=3"
|
|
"plymouth.use-simpledrm"
|
|
];
|
|
|
|
plymouth.enable = true;
|
|
|
|
tmp = {
|
|
useTmpfs = true;
|
|
cleanOnBoot = true;
|
|
};
|
|
};
|
|
|
|
systemd.services.nix-daemon.environment.TMPDIR = "/var/tmp";
|
|
|
|
environment.systemPackages = [
|
|
config.boot.kernelPackages.cpupower
|
|
pkgs.brightnessctl
|
|
pkgs.ddcutil
|
|
];
|
|
}
|