boot to base-linux

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

View file

@ -13,6 +13,7 @@ let
defaultModules = defaults.defaultModules ++ [
# NO_INLINE
tree.impure.profiles.base-linux
inputs.home-manager-unstable.nixosModules.home-manager
];

View file

@ -0,0 +1 @@
{ ... }: { boot.tmpOnTmpfs = true; }

View file

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

View file

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