Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configurations/extra/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
imports = [ ../base/default.nix ];

nix.settings = {
trusted-users = [ "@wheel" ];
trusted-users = [ "root" "nixbld" "@wheel" ];
experimental-features = [ "nix-command" "flakes" ];
};

Expand Down
18 changes: 9 additions & 9 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
inputs = {
nixpkgs.url = "github:rhelmot/nixpkgs/nixbsd-dev-old";
nixpkgs.url = "github:rhelmot/nixpkgs/nixbsd-dev";
lix = {
url = "git+https://git.lix.systems/artemist/lix.git?ref=freebsd-build";
inputs.nixpkgs.follows = "nixpkgs";
Expand All @@ -15,7 +15,7 @@
};

nixConfig = {
extra-substituters = [ "https://attic.mildlyfunctional.gay/nixbsd" ];
extra-trusted-substituters = [ "https://attic.mildlyfunctional.gay/nixbsd" ];
extra-trusted-public-keys =
[ "nixbsd:gwcQlsUONBLrrGCOdEboIAeFq9eLaDqfhfXmHZs1mgc=" ];
};
Expand Down
6 changes: 3 additions & 3 deletions modules/virtualisation/qemu-vm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -223,18 +223,18 @@ let
source = if config.boot.loader.espContents == null then throw "The bootloader configuration did not provide an EFI sys
tem partition but the drive layout is asking for it!" else config.boot.loader.espContents;
}];
totalSize = "64m";
totalSize = "128m";
};

freebsdRootPartition = pkgs.callPackage ../../lib/make-partition-image.nix (commonRoot // {
filesystem = "ufs";
totalSize = "10g";
totalSize = "60g";
});

openbsdRootPartition = pkgs.callPackage ../../lib/make-partition-image.nix (commonRoot // {
filesystem = "ufs";
ufsVersion = "1";
totalSize = "10g";
totalSize = "60g";
contents = commonRoot.contents ++ [{
target = "/dev/MAKEDEV";
source = getExe pkgs.openbsd.makedev;
Expand Down