Compare commits

..

No commits in common. "5f68e5745aeb2e981c5a76fc6ebeef15ba492706" and "fa7784ccedde01f20c4ae580f62dba7e945ea686" have entirely different histories.

2 changed files with 12 additions and 3 deletions

View file

@ -11,9 +11,15 @@
commonSettings = {
nix.enable = true;
auth.enable = true;
comin.enable = true;
};
nixpkgs.overlays = [
# Workaround https://github.com/NixOS/nixpkgs/issues/126755#issuecomment-869149243
(final: super: {
makeModulesClosure = x: super.makeModulesClosure (x // { allowMissing = true; });
})
];
environment.systemPackages = with pkgs; [
git
libraspberrypi
@ -28,11 +34,14 @@
interfaces.eth0.useDHCP = true;
};
time.timeZone = "Asia/Shanghai";
# boot.kernelPackages = pkgs.linuxPackages_stable;
# fileSystems."/".fsType = lib.mkForce "btrfs";
boot.supportedFilesystems.zfs = lib.mkForce false;
services.dae.enable = true;
services.dae.configFile = "/var/lib/dae/config.dae";
services.tailscale = {
enable = true;
permitCertUid = config.services.caddy.user;

View file

@ -16,7 +16,7 @@ in
config = mkIf cfg.enable {
programs.waybar = {
enable = true;
style = ./waybar.css;
style = readFile ./waybar.css;
settings = {
main = {
margin = "2px 3px 2 3px";