Files
nix/hosts/eirene/default.nix
2024-12-19 00:11:41 +00:00

65 lines
1.9 KiB
Nix

{ inputs, ... }:
{
imports = [
../../lib
inputs.disko.nixosModules.disko
(import ./format.nix { device = "/dev/disk/by-id/nvme-SAMSUNG_MZVL22T0HBLB-00BL2_S64RNE0R602762"; })
./hardware.nix
./display.nix
../common/system/configs/bluetooth
../common/system/configs/boot
../common/system/configs/brightnessctl
../common/system/configs/btop
../common/system/configs/btrfs
../common/system/configs/cpu
../common/system/configs/docker
../common/system/configs/fastfetch
../common/system/configs/getty
../common/system/configs/git
../common/system/configs/gpg-agent
../common/system/configs/impermanence
../common/system/configs/libvirt
../common/system/configs/lsof
../common/system/configs/ncdu
../common/system/configs/neovim
../common/system/configs/networking
../common/system/configs/nix
../common/system/configs/nix-cleanup
../common/system/configs/nix-ld
../common/system/configs/nixpkgs
../common/system/configs/ntp
../common/system/configs/pipewire
../common/system/configs/plymouth
../common/system/configs/powertop
../common/system/configs/printing
../common/system/configs/ranger
../common/system/configs/sops
../common/system/configs/ssh
../common/system/configs/system
../common/system/configs/timezone
../common/system/configs/tlp
../common/system/configs/tmux
../common/system/configs/tree
../common/system/configs/users
../common/system/configs/wget
../common/system/configs/zsh
./users/nick
];
networking.hostName = "eirene";
i18n.defaultLocale = "en_US.UTF-8";
sops.defaultSopsFile = ./secrets/secrets.yaml;
fileSystems."/mnt/windows" = {
device = "/dev/disk/by-id/nvme-Samsung_SSD_980_PRO_2TB_S69ENF0R841140X-part3";
fsType = "ntfs3";
noCheck = true;
options = [
"users"
"nofail"
"sys_immutable"
"windows_names"
];
};
}