tmpOnTmpfs only linux

This commit is contained in:
ChaotiCryptidz 2022-03-09 19:15:56 +00:00
parent 8d999905cd
commit fad9b00b93
No known key found for this signature in database
2 changed files with 20 additions and 1 deletions

View file

@ -1 +1,6 @@
_: { boot.tmpOnTmpfs = true; }
{ pkgs, lib, ... }: {
boot = lib.mkIf pkgs.stdenv.isLinux {
# NOINLINE
tmpOnTmpfs = true;
};
}

14
profiles/base/default.nix Normal file
View file

@ -0,0 +1,14 @@
{tree, ...}: {
imports = [
./access.nix
./boot.nix
./hardware.nix
./home.nix
./locale.nix
./nix.nix
./programs.nix
./services.nix
./terminals.nix
./zsh.nix
];
}