Flake update + fix ntfy in loki + remote network manager in freya
This commit is contained in:
parent
556f1d2745
commit
fe3593c552
5 changed files with 46 additions and 31 deletions
|
|
@ -26,15 +26,15 @@
|
|||
};
|
||||
|
||||
swapDevices = [
|
||||
{ device = "/swapfile"; size = 1024 * 32; }
|
||||
{ device = "/swapfile"; size = 1024 * 4; }
|
||||
];
|
||||
|
||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||
# still possible to use this option, but it's recommended to use it in conjunction
|
||||
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
||||
networking.networkmanager.enable = lib.mkDefault true;
|
||||
# networking.useDHCP = lib.mkDefault true;
|
||||
# networking.networkmanager.enable = lib.mkDefault true;
|
||||
networking.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.eth0.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.wlan0.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.ztmjfdwjkp.useDHCP = lib.mkDefault true;
|
||||
|
|
|
|||
|
|
@ -1,9 +1,14 @@
|
|||
{ pkgs, ... }:
|
||||
{ pkgs, config, ... }:
|
||||
let
|
||||
hosts = import ../../hosts.nix;
|
||||
in
|
||||
{
|
||||
|
||||
age.secrets = {
|
||||
ntfy-loki = { file = ../../secrets/ntfy-loki.age; owner = "bertof"; };
|
||||
};
|
||||
|
||||
|
||||
boot = {
|
||||
binfmt.emulatedSystems = [ "armv7l-linux" "aarch64-linux" ];
|
||||
# kernelPackages = pkgs.linuxPackages_latest;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue