diff --git a/flake.nix b/flake.nix index c4dbfe596e0e816199a37b1bce89c7e110bb247d..c4e6e318b56619c7423c181d375070d69e92104f 100644 --- a/flake.nix +++ b/flake.nix @@ -128,7 +128,6 @@ ./dragonwell ]; services.tclip.package = inputs.tclip.packages.${pkgs.system}.tclipd; }; - jasmine.imports = [ ./jasmine ]; }; nixConfig = { extra-substitutors = [ "https://jolheiser.cachix.org" ]; diff --git a/jasmine/default.nix b/jasmine/default.nix deleted file mode 100644 index 6f107ebec2977e4ed0f47e32af814bdad4333166..0000000000000000000000000000000000000000 --- a/jasmine/default.nix +++ /dev/null @@ -1,92 +0,0 @@ -let - username = "jolheiser"; - key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM7cgpIUaEY3q12xBct9a0gIl7rdckBBPsWQea7Wtj7P"; -in -{ - imports = [ - ./hardware.nix - ./homeassistant.nix - ]; - - boot.loader.grub = { - enable = true; - device = "/dev/sda"; - useOSProber = true; - }; - - networking = { - hostName = "jasmine"; # Define your hostname. - networkmanager.enable = true; - firewall.enable = true; - }; - - time.timeZone = "America/Chicago"; - - i18n.defaultLocale = "en_US.UTF-8"; - - i18n.extraLocaleSettings = { - LC_ADDRESS = "en_US.UTF-8"; - LC_IDENTIFICATION = "en_US.UTF-8"; - LC_MEASUREMENT = "en_US.UTF-8"; - LC_MONETARY = "en_US.UTF-8"; - LC_NAME = "en_US.UTF-8"; - LC_NUMERIC = "en_US.UTF-8"; - LC_PAPER = "en_US.UTF-8"; - LC_TELEPHONE = "en_US.UTF-8"; - LC_TIME = "en_US.UTF-8"; - }; - - services.xserver = { - enable = true; - displayManager.lightdm.enable = true; - desktopManager.xfce.enable = true; - layout = "us"; - xkbVariant = ""; - }; - - services = { - tailscale.enable = true; - openssh.enable = true; - fail2ban.enable = true; - }; - - users.users = { - "${username}" = { - isNormalUser = true; - extraGroups = [ - "networkmanager" - "wheel" - ]; - openssh.authorizedKeys.keys = [ key ]; - }; - "root".openssh.authorizedKeys.keys = [ key ]; - }; - - # Allow unfree packages - nixpkgs.config.allowUnfree = true; - - nix = { - gc.automatic = true; - settings = { - trusted-users = [ - "@sudo" - "@wheel" - "jolheiser" - ]; - experimental-features = [ - "flakes" - "nix-command" - ]; - auto-optimise-store = true; - }; - }; - - # 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? - -} diff --git a/jasmine/hardware.nix b/jasmine/hardware.nix deleted file mode 100644 index 0667013a75a1a5f1fc7a0c2e5b1cb6df337b0789..0000000000000000000000000000000000000000 --- a/jasmine/hardware.nix +++ /dev/null @@ -1,49 +0,0 @@ -# Do not modify this file! It was generated by ‘nixos-generate-config’ -# and may be overwritten by future invocations. Please make changes -# to /etc/nixos/configuration.nix instead. -{ - config, - lib, - pkgs, - modulesPath, - ... -}: - -{ - imports = [ - (modulesPath + "/installer/scan/not-detected.nix") - ]; - - boot.initrd.availableKernelModules = [ - "ehci_pci" - "ata_piix" - "usbhid" - "usb_storage" - "ums_realtek" - "sd_mod" - "sr_mod" - ]; - boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ "kvm-intel" ]; - boot.extraModulePackages = [ ]; - - fileSystems."/" = { - device = "/dev/disk/by-uuid/fde52e7b-7026-4969-a05c-dfc49d01aa05"; - fsType = "ext4"; - }; - - swapDevices = [ - { device = "/dev/disk/by-uuid/f5462a8a-d07c-40d2-a72f-b1e30ac3fb1a"; } - ]; - - # Enables DHCP on each ethernet and wireless interface. In case of scripted networking - - # still possible to use this option, but it's recommended to use it in conjunction - # with explicit per-interface declarations with `networking.interfaces..useDHCP`. - networking.useDHCP = lib.mkDefault true; - # networking.interfaces.enp3s0.useDHCP = lib.mkDefault true; - # networking.interfaces.wlp2s0.useDHCP = lib.mkDefault true; - - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; -} diff --git a/jasmine/homeassistant.nix b/jasmine/homeassistant.nix deleted file mode 100644 index 9e7eb2df922b4ab263484c458c4d97430cd80e13..0000000000000000000000000000000000000000 --- a/jasmine/homeassistant.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ - virtualisation.oci-containers = { - backend = "podman"; - containers.homeassistant = { - volumes = [ "home-assistant:/config" ]; - environment.TZ = "America/Chicago"; - image = "ghcr.io/home-assistant/home-assistant:stable"; # Warning: if the tag does not change, the image will not be updated - extraOptions = [ - "--network=host" - # "--device=/dev/ttyACM0:/dev/ttyACM0" # Example, change this to match your own hardware - ]; - }; - }; - networking.firewall.allowedTCPPorts = [ - 4001 - 8123 - ]; -}