Eliminate use of stable
Take all references to Nix stable out Take out hm stable and other inputs th also depended on it Clean up some lints and deadnix code
This commit is contained in:
+3
-4
@@ -54,11 +54,11 @@ let
|
||||
};
|
||||
in
|
||||
{
|
||||
genesis = machine { name = "genesis"; };
|
||||
genesis = unstable { name = "genesis"; };
|
||||
exodus = unstable { name = "exodus"; };
|
||||
jude = unstable { name = "jude"; };
|
||||
icdm-root = unstable { name = "icdm-root"; };
|
||||
linode = machine { name = "linode"; };
|
||||
linode = unstable { name = "linode"; };
|
||||
hosea = unstable { name = "hosea"; };
|
||||
jeremiah = unstable { name = "jeremiah"; };
|
||||
isaiah = unstable { name = "isaiah"; };
|
||||
@@ -66,8 +66,7 @@ in
|
||||
vm-jellyfin = vm { name = "vm-jellyfin"; };
|
||||
vm-matrix = vm { name = "vm-matrix"; };
|
||||
|
||||
iso = machine { name = "iso"; };
|
||||
iso-beta = unstable { name = "iso"; };
|
||||
iso = unstable { name = "iso"; };
|
||||
# nix build '.#nixosConfigurations.wsl.config.system.build.installer'
|
||||
nixos = wsl {
|
||||
name = "wsl";
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
];
|
||||
|
||||
networking.networkmanager.enable = lib.mkForce false;
|
||||
users.users.greg.initialPassword = "";
|
||||
users.users.greg.initialPassword = lib.mkForce "";
|
||||
#services.getty.autologinUser = lib.mkForce "greg";
|
||||
environment.systemPackages = with pkgs; [ tree ];
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
{
|
||||
imports = [ ];
|
||||
#boot.loader.grub.devices = [ "/dev/vda" ];
|
||||
boot.loader.grub.devices = [ "/dev/disk/by-label/ESP" ];
|
||||
|
||||
greg = {
|
||||
proxies."jellyfin.home".target = "http://localhost:8096/";
|
||||
@@ -10,6 +10,10 @@
|
||||
};
|
||||
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "/dev/disk/by-label/nixos";
|
||||
fsType = "ext4";
|
||||
};
|
||||
"/music" = {
|
||||
device = "10.42.1.4:/volume1/music";
|
||||
fsType = "nfs";
|
||||
|
||||
@@ -7,7 +7,7 @@ in
|
||||
|
||||
environment.systemPackages = with pkgs; [ upgrade-pg-cluster ];
|
||||
|
||||
boot.loader.grub.devices = [ "/dev/vda" ];
|
||||
boot.loader.grub.devices = [ "/dev/disk/by-label/ESP" ];
|
||||
|
||||
greg = {
|
||||
tailscale.enable = true;
|
||||
@@ -34,7 +34,6 @@ in
|
||||
isSystemUser = true;
|
||||
group = "dendrite";
|
||||
};
|
||||
greg.initialPassword = "password";
|
||||
};
|
||||
users.groups.dendrite = { };
|
||||
|
||||
|
||||
@@ -1,27 +1,30 @@
|
||||
# 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, ... }:
|
||||
{ lib, modulesPath, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/profiles/qemu-guest.nix")
|
||||
];
|
||||
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "virtio_blk" ];
|
||||
boot.initrd.availableKernelModules = [
|
||||
"ahci"
|
||||
"xhci_pci"
|
||||
"virtio_pci"
|
||||
"virtio_blk"
|
||||
];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-amd" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/f222513b-ded1-49fa-b591-20ce86a2fe7f";
|
||||
fsType = "ext4";
|
||||
};
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-label/nixos";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "systemd-1";
|
||||
fsType = "autofs";
|
||||
};
|
||||
fileSystems."/boot" = {
|
||||
device = "systemd-1";
|
||||
fsType = "autofs";
|
||||
};
|
||||
|
||||
swapDevices = [ ];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user