Nix : Add home config.
This commit is contained in:
parent
759670d9e9
commit
1fc1c1a465
29
.config/linux/system/home/Configuration.nix
Normal file
29
.config/linux/system/home/Configuration.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ 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";
|
||||
}
|
Reference in a new issue