From 7c0c87f4de012f15d7aeba87e1d562a73aba9bae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vili=20Sinerv=C3=A4?= Date: Mon, 9 Jun 2025 00:38:28 +0300 Subject: [PATCH] Remove unused generic conf --- hosts/nixos/configuration.nix | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 hosts/nixos/configuration.nix diff --git a/hosts/nixos/configuration.nix b/hosts/nixos/configuration.nix deleted file mode 100644 index 2708940..0000000 --- a/hosts/nixos/configuration.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ lib, ... }: -{ - imports = [ - ../../shared/base.nix - ../../shared/hardware/vm.nix - ]; - - #Prevent user from being locked out of the system before switching to proper config - users.mutableUsers = lib.mkForce true; -}