diff --git a/hosts/TITAN/system.nix b/hosts/TITAN/system.nix index 2e4cc0a..d68b314 100644 --- a/hosts/TITAN/system.nix +++ b/hosts/TITAN/system.nix @@ -1,5 +1,8 @@ { config, lib, pkgs, aspect, inputs, hosts, ... }: +let + inherit (inputs.self.packages.${pkgs.system}) bcachefs-tools linux-bcachefs; +in { imports = [ @@ -27,10 +30,14 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; - boot.kernelPackages = lib.mkForce (pkgs.linuxPackagesFor (pkgs.linux_testing_bcachefs.override { + boot.kernelPackages = lib.mkForce (pkgs.linuxPackagesFor (linux-bcachefs.override { ignoreConfigErrors = true; })); + nixpkgs.overlays = lib.singleton (_: _: { + inherit bcachefs-tools; + }); + networking.hostName = "TITAN"; time.timeZone = "Europe/Vienna";