hosts: rename cityseventeen and apeturescience
This commit is contained in:
parent
7a3833b08a
commit
ff1392552b
44 changed files with 37 additions and 37 deletions
12
flake.lock
generated
12
flake.lock
generated
|
@ -76,11 +76,11 @@
|
||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs": "nixpkgs"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1745114215,
|
"lastModified": 1745232749,
|
||||||
"narHash": "sha256-zyWOGf4xefpjcuPFHkWADYioyZ/XJcwyTMoj3/sfcQ0=",
|
"narHash": "sha256-EpM4MNPV0tPqsSrQq1B5EaE0+91MrVXgGS+ct+q/I90=",
|
||||||
"owner": "chaotic-cx",
|
"owner": "chaotic-cx",
|
||||||
"repo": "nyx",
|
"repo": "nyx",
|
||||||
"rev": "85b088ad128e6609f3a672f0e0cd1c76b058227c",
|
"rev": "9117798d3fac3e83568d4d050278fdfb8842879d",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -392,11 +392,11 @@
|
||||||
"systems": "systems_2"
|
"systems": "systems_2"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1745118045,
|
"lastModified": 1745174874,
|
||||||
"narHash": "sha256-c5ppxEk9zBIdWfjSigCp3W/1k0WkOteJicsCt/gWhks=",
|
"narHash": "sha256-356rTt/Z8kuZD0TnROfBvA256SCQYQ8885xB7fYvJZk=",
|
||||||
"owner": "molarmanful",
|
"owner": "molarmanful",
|
||||||
"repo": "kirsch",
|
"repo": "kirsch",
|
||||||
"rev": "ab53421801bead99c04e85124b5c0059165240ec",
|
"rev": "23a2568a6a2a1af438ecc71b14ccb7f4d7eba7c6",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -9,7 +9,7 @@ in
|
||||||
{
|
{
|
||||||
flake = {
|
flake = {
|
||||||
nixosConfigurations = mkHosts {
|
nixosConfigurations = mkHosts {
|
||||||
cityseventeen = {
|
sodomgomorrah = {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
};
|
};
|
||||||
micronix = {
|
micronix = {
|
||||||
|
@ -18,7 +18,7 @@ in
|
||||||
inputs.chaotic.nixosModules.default
|
inputs.chaotic.nixosModules.default
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
apeturescience = {
|
tyresidon = {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -17,6 +17,9 @@ in
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
environment.systemPackages = [ cfg.package ];
|
environment.systemPackages = [ cfg.package ];
|
||||||
systemd.packages = [ cfg.package ];
|
systemd = {
|
||||||
|
packages = [ cfg.package ];
|
||||||
|
user.services.foot-server.enable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,17 +15,18 @@
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
boot = {
|
boot = {
|
||||||
initrd = {
|
initrd.luks.devices.genesis = {
|
||||||
systemd.additionalUpstreamUnits = [ "systemd-boot.service" ];
|
device = "/dev/disk/by-uuid/cfb6d987-8602-4312-a580-00b3205633ca";
|
||||||
luks.devices = {
|
preLVM = true;
|
||||||
"luks-c354eb7f-1e69-4054-afa2-8c4e81a761fa" = {
|
|
||||||
device = "/dev/disk/by-uuid/c354eb7f-1e69-4054-afa2-8c4e81a761fa";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
loader = {
|
|
||||||
systemd-boot.enable = true;
|
loader.grub = {
|
||||||
efi.canTouchEfiVariables = true;
|
enable = true;
|
||||||
|
device = "nodev";
|
||||||
|
efiSupport = true;
|
||||||
|
efiInstallAsRemovable = true;
|
||||||
|
enableCryptodisk = true;
|
||||||
|
memtest86.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -47,10 +48,12 @@
|
||||||
layout = "us";
|
layout = "us";
|
||||||
options = "eurosign:e,ctrl:nocaps";
|
options = "eurosign:e,ctrl:nocaps";
|
||||||
};
|
};
|
||||||
|
|
||||||
displayManager.gdm = {
|
displayManager.gdm = {
|
||||||
enable = true;
|
enable = true;
|
||||||
wayland = true;
|
wayland = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
windowManager.windowmaker.enable = true;
|
windowManager.windowmaker.enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -17,34 +17,27 @@
|
||||||
"xhci_pci"
|
"xhci_pci"
|
||||||
"ahci"
|
"ahci"
|
||||||
"nvme"
|
"nvme"
|
||||||
"usb_storage"
|
|
||||||
"usbhid"
|
"usbhid"
|
||||||
"sd_mod"
|
|
||||||
];
|
];
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [ "dm-snapshot" ];
|
||||||
boot.kernelModules = [ "kvm-amd" ];
|
boot.kernelModules = [ "kvm-amd" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" = {
|
fileSystems."/" = {
|
||||||
device = "/dev/disk/by-uuid/1076cf01-0d74-44fa-b24f-a795191fad83";
|
device = "/dev/disk/by-uuid/a7242725-65af-459f-b9c7-3c228b751edd";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.initrd.luks.devices."luks-16d833f7-9082-4bf0-b027-98102c786a01".device =
|
|
||||||
"/dev/disk/by-uuid/16d833f7-9082-4bf0-b027-98102c786a01";
|
|
||||||
|
|
||||||
fileSystems."/boot" = {
|
fileSystems."/boot" = {
|
||||||
device = "/dev/disk/by-uuid/6143-FAFA";
|
device = "/dev/disk/by-uuid/576C-BD72";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [
|
options = [
|
||||||
"fmask=0077"
|
"fmask=0022"
|
||||||
"dmask=0077"
|
"dmask=0022"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices = [
|
swapDevices = [ ];
|
||||||
{ device = "/dev/disk/by-uuid/203bcb2c-a264-4243-9518-d1f975aea05c"; }
|
|
||||||
];
|
|
||||||
|
|
||||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
# 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
|
# (the default) this is the recommended approach. When using systemd-networkd it's
|
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 46 KiB |
|
@ -4,7 +4,7 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
alqueva.users.arturm = {
|
alqueva.users.amadaluzia = {
|
||||||
shell = pkgs.amadaluzian-zsh;
|
shell = pkgs.amadaluzian-zsh;
|
||||||
tmpfiles = [
|
tmpfiles = [
|
||||||
"L+ %h/.config/qutebrowser/config.py - - - - ${./configs/qutebrowser/config.py}"
|
"L+ %h/.config/qutebrowser/config.py - - - - ${./configs/qutebrowser/config.py}"
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./arturm
|
./amadaluzia
|
||||||
];
|
];
|
||||||
}
|
}
|
|
@ -3,6 +3,7 @@
|
||||||
system,
|
system,
|
||||||
inputs,
|
inputs,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
lib,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
|
@ -28,7 +29,7 @@
|
||||||
wms = {
|
wms = {
|
||||||
niri.enable = true;
|
niri.enable = true;
|
||||||
};
|
};
|
||||||
users.chell = {
|
users.nixos = {
|
||||||
shell = pkgs.amadaluzian-zsh;
|
shell = pkgs.amadaluzian-zsh;
|
||||||
groups = [
|
groups = [
|
||||||
"wheel"
|
"wheel"
|
||||||
|
@ -41,7 +42,7 @@
|
||||||
pkgs.alacritty
|
pkgs.alacritty
|
||||||
pkgs.fuzzel
|
pkgs.fuzzel
|
||||||
pkgs.amadaluzian-zsh
|
pkgs.amadaluzian-zsh
|
||||||
pkgs.ungoogled-chromium
|
pkgs.chromium
|
||||||
pkgs.pwvucontrol
|
pkgs.pwvucontrol
|
||||||
pkgs.polari
|
pkgs.polari
|
||||||
pkgs.dino
|
pkgs.dino
|
||||||
|
@ -84,7 +85,7 @@
|
||||||
|
|
||||||
i18n.defaultLocale = "en_US.UTF-8";
|
i18n.defaultLocale = "en_US.UTF-8";
|
||||||
|
|
||||||
users.users.nixos.enable = false;
|
users.users.nixos.initialHashedPassword = lib.mkForce null;
|
||||||
|
|
||||||
console = {
|
console = {
|
||||||
keyMap = "us";
|
keyMap = "us";
|
Loading…
Add table
Add a link
Reference in a new issue