Skip to content

Commit

Permalink
+
Browse files Browse the repository at this point in the history
  • Loading branch information
oluceps committed Oct 24, 2024
1 parent c180e6f commit 5b19f0a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
9 changes: 7 additions & 2 deletions hosts/hastur/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,17 @@ withSystem "x86_64-linux" (
let
inherit (self) lib;
in
lib.nixosSystem rec {
lib.nixosSystem {
pkgs = import inputs.nixpkgs {
inherit system;
config = {
allowUnfree = true;
allowUnsupportedSystem = true;
allowUnfreePredicate =
pkg:
builtins.elem (lib.getName pkg) [
"code"
"vscode"
];
permittedInsecurePackages = [
"olm-3.2.16"
];
Expand Down
1 change: 0 additions & 1 deletion misc.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
Environment = [ "TMPDIR=/var/tmp/nix-daemon" ];
};


# srv.earlyoom.enable = true;
environment.systemPackages = [
pkgs.eza
Expand Down

0 comments on commit 5b19f0a

Please sign in to comment.