35 lines
913 B
Nix
35 lines
913 B
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, ... }:
|
||
{
|
||
imports = [
|
||
./hardware-configuration.nix
|
||
./repo/default-hardware.nix
|
||
./repo/desktop-sway.nix
|
||
./repo/users.nix
|
||
];
|
||
|
||
system.stateVersion = "21.05";
|
||
system.autoUpgrade.channel = "https://nixos.org/channels/nixos-unstable";
|
||
|
||
# boot
|
||
boot.zfs.requestEncryptionCredentials = []; # list -> default: true - always request for password
|
||
|
||
# --------
|
||
# specifical this maschine:
|
||
# --------
|
||
|
||
networking.hostId = "/etc/machine-id"; # zfs needed
|
||
networking.hostName = "nixos"; # Define your hostname.
|
||
# cryptsetup
|
||
# boot.initrd.luks.enable = true;
|
||
boot.initrd.luks.devices = {
|
||
"croot" = {
|
||
device = "/dev/disk/by-uuid/e75385e9-b733-49d4-91fd-6ac2fa821195" ;
|
||
};
|
||
};
|
||
}
|
||
|