aboutsummaryrefslogtreecommitdiff
path: root/nix/machines/vm-shared.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-04-20 11:09:43 -0700
committerFranck Cuny <franck@fcuny.net>2025-04-20 11:09:43 -0700
commit559e2ada65686b4f5c878e3454bf4e7b9f57619b (patch)
tree9f156cabf49a5d24494298b239720283bac19467 /nix/machines/vm-shared.nix
parentMerge pull request #17 from fcuny/update_flake_lock_action (diff)
downloadinfra-559e2ada65686b4f5c878e3454bf4e7b9f57619b.tar.gz
remove configuration for the VMs
Diffstat (limited to 'nix/machines/vm-shared.nix')
-rw-r--r--nix/machines/vm-shared.nix62
1 files changed, 0 insertions, 62 deletions
diff --git a/nix/machines/vm-shared.nix b/nix/machines/vm-shared.nix
deleted file mode 100644
index 7586987..0000000
--- a/nix/machines/vm-shared.nix
+++ /dev/null
@@ -1,62 +0,0 @@
-{ pkgs, ... }:
-{
- boot.kernelPackages = pkgs.linuxPackages_latest;
-
- nix = {
- package = pkgs.nixVersions.latest;
- settings = {
- trusted-users = [
- "@admin"
- "fcuny"
- ];
- experimental-features = [
- "nix-command"
- "flakes"
- ];
- };
- };
-
- time.timeZone = "America/Los_Angeles";
-
- # Don't require password for sudo
- security.sudo.wheelNeedsPassword = false;
-
- # Virtualization settings
- virtualisation.docker.enable = true;
-
- # Select internationalisation properties.
- i18n = {
- defaultLocale = "en_US.UTF-8";
- };
-
- # Define a user account. Don't forget to set a password with ‘passwd’.
- users.mutableUsers = false;
-
- # List packages installed in system profile. To search, run:
- # $ nix search wget
- environment.systemPackages = with pkgs; [
- curl
- git
- vim
- jq
- ];
-
- # Enable the OpenSSH daemon.
- services.openssh.enable = true;
- services.openssh.settings.PasswordAuthentication = true;
- services.openssh.settings.PermitRootLogin = "no";
-
- users.users.root.openssh.authorizedKeys.keys = [
- "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINBkozy+X96u5ciX766bJ/AyQ3xm1tXZTIr5+4PVFZFi"
- ];
-
- networking.firewall.enable = false;
-
- # This value determines the NixOS release from which the default
- # settings for stateful data, like file locations and database versions
- # on your system were taken. It‘s perfectly fine and recommended to leave
- # this value at the release version of the first install of this system.
- # Before changing this value read the documentation for this option
- # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
- system.stateVersion = "23.11"; # Did you read the comment?
-}