diff options
author | Julian T <julian@jtle.dk> | 2021-03-26 23:23:00 +0100 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2021-03-26 23:23:59 +0100 |
commit | a6e54152bddf43600e5b9f83c187d3b3aee6411a (patch) | |
tree | 7327368a3319fa4fa9554304a494319b3b499d27 | |
parent | 2e8fe8b92cc722fc10c9d9d18fabac9cb30ea3fc (diff) |
Move everything into non configuration.nix files
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | core.nix (renamed from configuration.nix) | 6 |
2 files changed, 1 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..40c7108 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +configuration.nix diff --git a/configuration.nix b/core.nix index 7bd3fde..7c71927 100644 --- a/configuration.nix +++ b/core.nix @@ -5,12 +5,6 @@ { config, pkgs, ... }: { - imports = [ - ./hardware-configuration.nix - ./pc_t14.nix - ./desktop.nix - ]; - boot = { tmpOnTmpfs = true; supportedFilesystems = [ "ntfs" ]; |