mirror of https://gitlab.crans.org/nounous/nixos
21 lines
318 B
Nix
21 lines
318 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./networking.nix
|
|
|
|
../../../modules
|
|
];
|
|
|
|
boot.loader.grub.devices = [ "/dev/sda" ];
|
|
|
|
networking.hostName = "neo";
|
|
|
|
sops.secrets.matrix-sliding-sync-pass-file = {
|
|
sopsFile = ../../../secrets/neo.yaml;
|
|
};
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|