about summary refs log tree commit diff
path: root/hosts/phobos/default.nix
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-08-21 00:23:09 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-08-21 01:28:11 +0200
commitaa94424db16cd977c3ffc2c2f7223839f4d206b5 (patch)
tree097cdb97e1e13878b2eec7d76dcd1c4c86421c62 /hosts/phobos/default.nix
parentRemove default packages (diff)
downloadnixos-config-aa94424db16cd977c3ffc2c2f7223839f4d206b5.tar.gz
nixos-config-aa94424db16cd977c3ffc2c2f7223839f4d206b5.tar.bz2
nixos-config-aa94424db16cd977c3ffc2c2f7223839f4d206b5.zip
Set non persistance as the default
Diffstat (limited to 'hosts/phobos/default.nix')
-rw-r--r--hosts/phobos/default.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/hosts/phobos/default.nix b/hosts/phobos/default.nix
index c31d832..5bdd524 100644
--- a/hosts/phobos/default.nix
+++ b/hosts/phobos/default.nix
@@ -1,8 +1,6 @@
 { config, pkgs, lib, secrets, hostname, inputs, user, ... }: {
 
   imports = [
-    "${inputs.impermanence}/nixos.nix"
-
     ./hardware.nix
 
     ../../modules/bluetooth
@@ -37,17 +35,6 @@
     '';
   */
 
-  environment.persistence."/persist" = {
-    directories = [
-      "/var/log"
-      "/var/lib"
-    ];
-    files = [
-      "/etc/machine-id"
-      "/etc/nix/id_rsa"
-    ];
-  };
-
   environment.etc."nix-index/files".source = inputs.nix-index.legacyPackages.x86_64-linux.database;
 
 }