mirror of
https://github.com/RGBCube/ncc
synced 2025-07-29 19:17:45 +00:00
Remove old hosts
This commit is contained in:
parent
4231044f8a
commit
3951f0e6a6
16 changed files with 4 additions and 218 deletions
|
@ -1,43 +0,0 @@
|
|||
{ themes, config, lib, pkgs, ... }: with lib; merge
|
||||
|
||||
(systemConfiguration {
|
||||
system.stateVersion = "24.11";
|
||||
nixpkgs.hostPlatform = "x86_64-linux";
|
||||
|
||||
time.timeZone = "Europe/Istanbul";
|
||||
|
||||
secrets.saidPassword.file = ./password.said.age;
|
||||
|
||||
users.users = {
|
||||
root.hashedPasswordFile = config.secrets.saidPassword.path;
|
||||
|
||||
said = sudoUser (desktopUser {
|
||||
description = "Said";
|
||||
hashedPasswordFile = config.secrets.saidPassword.path;
|
||||
});
|
||||
};
|
||||
|
||||
theme = themes.custom (themes.raw.gruvbox-dark-hard // {
|
||||
cornerRadius = 0;
|
||||
borderWidth = 1;
|
||||
|
||||
margin = 0;
|
||||
padding = 6;
|
||||
|
||||
font.size.normal = 12;
|
||||
font.size.big = 16;
|
||||
|
||||
font.sans.name = "Lexend";
|
||||
font.sans.package = pkgs.lexend;
|
||||
|
||||
font.mono.name = "JetBrainsMono Nerd Font";
|
||||
font.mono.package = pkgs.nerdfonts.override { fonts = [ "JetBrainsMono"]; };
|
||||
|
||||
icons.name = "Gruvbox-Plus-Dark";
|
||||
icons.package = pkgs.gruvbox-plus-icons;
|
||||
});
|
||||
})
|
||||
|
||||
(homeConfiguration {
|
||||
home.stateVersion = "24.11";
|
||||
})
|
|
@ -1,35 +0,0 @@
|
|||
{ config, lib, ... }: with lib;
|
||||
|
||||
systemConfiguration {
|
||||
boot.loader = {
|
||||
systemd-boot = enabled {
|
||||
editor = false;
|
||||
};
|
||||
|
||||
efi.canTouchEfiVariables = true;
|
||||
};
|
||||
|
||||
boot.initrd.availableKernelModules = [
|
||||
"ahci"
|
||||
"ehci_pci"
|
||||
"sd_mod"
|
||||
"sr_mod"
|
||||
"usb_storage"
|
||||
"usbhid"
|
||||
];
|
||||
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-label/root";
|
||||
fsType = "btrfs";
|
||||
options = [ "noatime" ];
|
||||
};
|
||||
|
||||
fileSystems.${config.boot.loader.efi.efiSysMountPoint} = {
|
||||
device = "/dev/disk/by-label/boot";
|
||||
fsType = "vfat";
|
||||
options = [ "noatime" ];
|
||||
};
|
||||
|
||||
hardware.enableAllFirmware = true;
|
||||
hardware.cpu.intel.updateMicrocode = true;
|
||||
}
|
Binary file not shown.
|
@ -1,10 +0,0 @@
|
|||
age-encryption.org/v1
|
||||
-> ssh-ed25519 CzqbPQ YpdEAmAsfX1gVJFabC9iR71Fo3hQbnqfdqEOHG7k0ng
|
||||
a/aOpjWKvwcOrPLDECd/12sIyP2oXySt/q0qX1gb3VU
|
||||
-> ssh-ed25519 CzqbPQ fpyWx9qWw0JG0Zc1Gc8MD6HEDq8M1aY2jYPjMOiMohI
|
||||
nmIHRcH+P6zlEh47qimm0gAo4WLDLVONjSfQ40BYuO0
|
||||
-> ssh-ed25519 f5VzMA mljacn96t2J2LVhX8/vzbW2a0zzu5NtWCXZ2OQzBgVk
|
||||
lCkWWSKlzOo4JHCkNT6csvlb+qMPcqmC6lKa5y24oKY
|
||||
--- UbeKoJcDPPJ4xW3Y6Z58bpExIihCQjD7+ltak3T9fQk
|
||||
²k_˜ŒîPê}|ºù•"ŽeП#ñ m ·6½ñ°A¶ƒ_:‡b=A{d6~x.¨=ŽCFI2
|
||||
ü-þ7s˜8Frö?|Í£
ŸˆyÎQ]qõ)N{Φ%¿3?nÊ?÷-u©¼¿x\^
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
rgb = sudoUser {
|
||||
description = "RGB";
|
||||
openssh.authorizedKeys.keys = [ keys.enka ];
|
||||
openssh.authorizedKeys.keys = keys.admins;
|
||||
hashedPasswordFile = config.secrets.rgbPassword.path;
|
||||
};
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
floppy = sudoUser {
|
||||
description = "Floppy";
|
||||
openssh.authorizedKeys.keys = [ keys.enka ];
|
||||
openssh.authorizedKeys.keys = keys.admins;
|
||||
hashedPasswordFile = config.secrets.floppyPassword.path;
|
||||
};
|
||||
|
||||
|
|
|
@ -1,31 +0,0 @@
|
|||
{ config, lib, ... }: with lib; merge
|
||||
|
||||
(systemConfiguration {
|
||||
system.stateVersion = "24.11";
|
||||
nixpkgs.hostPlatform = "x86_64-linux";
|
||||
|
||||
time.timeZone = "Europe/Istanbul";
|
||||
|
||||
secrets = {
|
||||
orhanPassword.file = ./password.orhan.age;
|
||||
saidPassword.file = ./password.said.age;
|
||||
};
|
||||
|
||||
users.users = {
|
||||
root.hashedPasswordFile = config.secrets.saidPassword.path;
|
||||
|
||||
orhan = desktopUser {
|
||||
description = "Orhan";
|
||||
hashedPasswordFile = config.secrets.orhanPassword.path;
|
||||
};
|
||||
|
||||
said = sudoUser (desktopUser {
|
||||
description = "Said";
|
||||
hashedPasswordFile = config.secrets.saidPassword.path;
|
||||
});
|
||||
};
|
||||
})
|
||||
|
||||
(homeConfiguration {
|
||||
home.stateVersion = "24.11";
|
||||
})
|
|
@ -1,38 +0,0 @@
|
|||
{ config, lib, ... }: with lib;
|
||||
|
||||
systemConfiguration {
|
||||
boot.loader = {
|
||||
systemd-boot = enabled {
|
||||
editor = false;
|
||||
};
|
||||
|
||||
efi.canTouchEfiVariables = true;
|
||||
};
|
||||
|
||||
boot.initrd.availableKernelModules = [
|
||||
"ahci"
|
||||
"nvme"
|
||||
"sr_mod"
|
||||
"usbhid"
|
||||
"xhci_pci"
|
||||
];
|
||||
|
||||
boot.kernelModules = [
|
||||
"kvm-intel"
|
||||
];
|
||||
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-label/root";
|
||||
fsType = "btrfs";
|
||||
options = [ "noatime" ];
|
||||
};
|
||||
|
||||
fileSystems.${config.boot.loader.efi.efiSysMountPoint} = {
|
||||
device = "/dev/disk/by-label/ESP";
|
||||
fsType = "vfat";
|
||||
options = [ "noatime" ];
|
||||
};
|
||||
|
||||
hardware.enableAllFirmware = true;
|
||||
hardware.cpu.intel.updateMicrocode = true;
|
||||
}
|
Binary file not shown.
|
@ -1,34 +0,0 @@
|
|||
|
||||
{ hardware, lib, ... }: with lib;
|
||||
|
||||
systemConfiguration {
|
||||
imports = [ hardware.nixosModules.common-gpu-nvidia ];
|
||||
|
||||
boot.kernelParams = [ "nvidia-drm.fbdev=1" ];
|
||||
|
||||
boot.kernelModules = [
|
||||
"nvidia"
|
||||
"nvidia_drm"
|
||||
"nvidia_modeset"
|
||||
"nvidia_uvm"
|
||||
];
|
||||
|
||||
hardware.nvidia = {
|
||||
open = false;
|
||||
powerManagement = enabled;
|
||||
|
||||
prime = {
|
||||
intelBusId = "PCI:0:2:0";
|
||||
nvidiaBusId = "PCI:1:0:0";
|
||||
};
|
||||
};
|
||||
|
||||
environment.sessionVariables = {
|
||||
GBM_BACKEND = "nvidia-drm";
|
||||
LIBVA_DRIVER_NAME = "nvidia";
|
||||
NVD_BACKEND = "direct";
|
||||
XDG_SESSION_TYPE = "wayland";
|
||||
__GLX_VENDOR_LIBRARY_NAME = "nvidia";
|
||||
};
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
age-encryption.org/v1
|
||||
-> ssh-ed25519 CzqbPQ S+qzZKEm8R8tBrEzy51XyuGDgcJF7TTswPEIxQdCli0
|
||||
/Cfi+/E78lT5V45L7DmWgdne+51tx1s6WzGJxqDRrzM
|
||||
-> ssh-ed25519 f5VzMA 66MxeFz0QxNQ32nJJuM8wFPq6ilZC7k3D+WzDwsAxiQ
|
||||
HwVYX8Na53eeuQUUiBC/EfyuE9LzeJhbwyD8oC2w1N8
|
||||
--- 24UVWQQ8kg3+Eq0VdO/aFZ1C0ruKoe8bemv8rLMpXoY
|
||||
U<>D:¬ÕÒƒvá Wñƒ‡IvßëÓMñÂgCÓ<
|
||||
ƒÐê©F‘ŽLM<4C>äù3=Fd¾Z&äÚò¶$³6h”3É|Bë¥<fiÚ$£›rž¯öï*
|
Binary file not shown.
|
@ -12,7 +12,7 @@
|
|||
|
||||
seven = sudoUser {
|
||||
description = "Hungry Seven";
|
||||
openssh.authorizedKeys.keys = [ keys.enka ];
|
||||
openssh.authorizedKeys.keys = keys.admins;
|
||||
hashedPasswordFile = config.secrets.sevenPassword.path;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue