mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
28 lines
482 B
Nix
28 lines
482 B
Nix
|
|
{ pkgs, config, ... }:
|
||
|
|
{
|
||
|
|
imports = [
|
||
|
|
./hardware-configuration.nix
|
||
|
|
./../../modules/core/default.dandelion.nix
|
||
|
|
];
|
||
|
|
|
||
|
|
networking.hostName = "dandelion";
|
||
|
|
|
||
|
|
nixpkgs.config.permittedInsecurePackages = [
|
||
|
|
"jitsi-meet-1.0.8043"
|
||
|
|
"olm-3.2.16"
|
||
|
|
];
|
||
|
|
|
||
|
|
time.timeZone = "Europe/Amsterdam";
|
||
|
|
|
||
|
|
environment.systemPackages = with pkgs; [
|
||
|
|
pkgs.kitty.terminfo
|
||
|
|
];
|
||
|
|
|
||
|
|
boot = {
|
||
|
|
loader.systemd-boot = {
|
||
|
|
enable = true;
|
||
|
|
canTouchEfiVariables = true;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|