diff options
author | Leonardo Santiago <[email protected]> | 2024-09-12 21:44:46 -0300 |
---|---|---|
committer | Leonardo Santiago <[email protected]> | 2024-09-12 23:20:51 -0300 |
commit | 62100c9265a4de389d1ea8060cbddddacde161a7 (patch) | |
tree | 811ca1c5803ccdb2670f0c239214bc0dc30f57c7 /hosts/iori | |
parent | f9ddec7952709d7b5d5d79deadca07c573510d49 (diff) |
split users/leonardo.nix into modules with options
in order to be able to deploy just a few of those to iori.nix
Diffstat (limited to 'hosts/iori')
-rw-r--r-- | hosts/iori/configuration.nix | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/hosts/iori/configuration.nix b/hosts/iori/configuration.nix deleted file mode 100644 index db84c09..0000000 --- a/hosts/iori/configuration.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ pkgs, inputs, ... }: -{ - imports = - [ inputs.nixos-hardware.nixosModules.raspberry-pi-4 ]; - # hardware = { - # raspberry-pi."4".apply-overlays-dtmerge.enable = true; - # }; - nixpkgs.overlays = [ - (final: super: { - makeModulesClosure = x: - super.makeModulesClosure (x // { allowMissing = true; }); - }) - ]; - - networking.hostName = "iori"; - system.stateVersion = "23.11"; -} |