This repository has been archived on 2024-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
linux/.config/linux/system/home/Configuration.nix

30 lines
489 B
Nix

{ config, pkgs, ... }:
{
imports = [
./HardwareConfiguration.nix
./Backup.nix
./Nextcloud.nix
./PhotosProcess.nix
./YandexMusic.nix
../Common.nix
../PowersaveAmd.nix
../AmdGpu.nix
../Docker.nix
../Sshd.nix
];
# Network.
networking.hostName = "home";
# Filesystems.
# fileSystems."/storage/cold_1" = {
# device = "/dev/storage/cold_1";
# fsType = "ext4";
# options = [ "noauto" "nofail" ];
# };
# Do not touch ever.
system.stateVersion = "23.11";
}