chore: remove hime
This commit is contained in:
parent
717db84ee1
commit
62cfde2211
7 changed files with 2 additions and 105 deletions
|
@ -22,9 +22,9 @@
|
||||||
|
|
||||||
+ :house_with_garden: [home](home)
|
+ :house_with_garden: [home](home)
|
||||||
+ :computer: [hosts](hosts)
|
+ :computer: [hosts](hosts)
|
||||||
- :full_moon: [tsuki](hosts/tsuki)
|
- :cherry_blossom: [sakura](hosts/sakura)
|
||||||
- :princess: [hime](hosts/hime)
|
|
||||||
- :white_flower: [sutakku](hosts/sutakku)
|
- :white_flower: [sutakku](hosts/sutakku)
|
||||||
|
- :full_moon: [tsuki](hosts/tsuki)
|
||||||
+ :electric_plug: [modules](modules)
|
+ :electric_plug: [modules](modules)
|
||||||
+ :package: [pkgs](pkgs)
|
+ :package: [pkgs](pkgs)
|
||||||
+ :lock: [secrets](secrets)
|
+ :lock: [secrets](secrets)
|
||||||
|
|
|
@ -21,10 +21,6 @@
|
||||||
programs.ssh = {
|
programs.ssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
Host hime
|
|
||||||
HostName 192.168.1.66
|
|
||||||
User oh
|
|
||||||
IdentityFile /home/notoh/.ssh/hime
|
|
||||||
Host sutakku
|
Host sutakku
|
||||||
HostName 192.168.1.72
|
HostName 192.168.1.72
|
||||||
User oh
|
User oh
|
||||||
|
|
|
@ -4,7 +4,6 @@ my different hosts, each with their own unique configurations and purposes.
|
||||||
|
|
||||||
Name | Description
|
Name | Description
|
||||||
--------------- | -----------
|
--------------- | -----------
|
||||||
`hime` | portainer vm, hosting a ton of docker services
|
|
||||||
`sakura` | my WIP new main vm
|
`sakura` | my WIP new main vm
|
||||||
`sutakku` | (currently) my *arr stack / seedbox vm
|
`sutakku` | (currently) my *arr stack / seedbox vm
|
||||||
`tsuki` | my main machine running hyprland
|
`tsuki` | my main machine running hyprland
|
|
@ -1,15 +1,5 @@
|
||||||
inputs: {
|
inputs: {
|
||||||
nodes = with inputs.deploy-rs.lib.x86_64-linux; {
|
nodes = with inputs.deploy-rs.lib.x86_64-linux; {
|
||||||
hime = {
|
|
||||||
hostname = "hime";
|
|
||||||
profiles.system = {
|
|
||||||
user = "root";
|
|
||||||
path = activate.nixos inputs.self.nixosConfigurations.hime;
|
|
||||||
};
|
|
||||||
sshUser = "oh";
|
|
||||||
sshOpts = ["-t" "-i" "~/.ssh/hime"];
|
|
||||||
magicRollback = false;
|
|
||||||
};
|
|
||||||
sutakku = {
|
sutakku = {
|
||||||
hostname = "sutakku";
|
hostname = "sutakku";
|
||||||
profiles.system = {
|
profiles.system = {
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
{pkgs, lib, ...}: {
|
|
||||||
imports = [
|
|
||||||
./hardware-configuration.nix
|
|
||||||
../../modules
|
|
||||||
];
|
|
||||||
|
|
||||||
boot.loader = {
|
|
||||||
grub = {
|
|
||||||
enable = true;
|
|
||||||
configurationLimit = 5;
|
|
||||||
device = "/dev/sda";
|
|
||||||
useOSProber = false;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
networking = {
|
|
||||||
hostName = "hime";
|
|
||||||
};
|
|
||||||
|
|
||||||
services.xserver = {
|
|
||||||
layout = "us";
|
|
||||||
xkbVariant = "";
|
|
||||||
};
|
|
||||||
|
|
||||||
users = {
|
|
||||||
defaultUserShell = pkgs.nushell;
|
|
||||||
users.notoh = lib.mkForce {
|
|
||||||
isNormalUser = true;
|
|
||||||
description = "notoh";
|
|
||||||
extraGroups = ["networkmanager" "wheel" "docker"];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
wget
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,33 +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 + "/profiles/qemu-guest.nix")
|
|
||||||
];
|
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod" ];
|
|
||||||
boot.initrd.kernelModules = [ ];
|
|
||||||
boot.kernelModules = [ ];
|
|
||||||
boot.extraModulePackages = [ ];
|
|
||||||
|
|
||||||
fileSystems."/" =
|
|
||||||
{ device = "/dev/disk/by-uuid/f5a0738c-d027-4ffb-82ec-9901ca6b310b";
|
|
||||||
fsType = "ext4";
|
|
||||||
};
|
|
||||||
|
|
||||||
swapDevices =
|
|
||||||
[ { device = "/dev/disk/by-uuid/f28bad28-ae14-4aa7-85c5-47abe46bae56"; }
|
|
||||||
];
|
|
||||||
|
|
||||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
|
||||||
# (the default) this is the recommended approach. When using systemd-networkd it's
|
|
||||||
# still possible to use this option, but it's recommended to use it in conjunction
|
|
||||||
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
|
||||||
networking.useDHCP = lib.mkDefault true;
|
|
||||||
# networking.interfaces.ens18.useDHCP = lib.mkDefault true;
|
|
||||||
|
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
||||||
}
|
|
|
@ -1,18 +0,0 @@
|
||||||
{
|
|
||||||
config,
|
|
||||||
pkgs,
|
|
||||||
lib,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [
|
|
||||||
../../home
|
|
||||||
];
|
|
||||||
systemd.user.startServices = "sd-switch";
|
|
||||||
programs.home-manager.enable = true;
|
|
||||||
|
|
||||||
home = {
|
|
||||||
username = lib.mkDefault "notoh";
|
|
||||||
homeDirectory = lib.mkDefault "/home/notoh";
|
|
||||||
stateVersion = "23.05";
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue