mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
remove old hosts
This commit is contained in:
parent
b442b0ccc7
commit
ad9d712a62
12 changed files with 0 additions and 147 deletions
|
@ -1,7 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
{
|
|
||||||
sconfig.profile = "server";
|
|
||||||
boot.loader.grub.enable = true;
|
|
||||||
boot.loader.grub.device = "/dev/vda";
|
|
||||||
fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; };
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
pkgs = "nixpkgs";
|
|
||||||
system = "x86_64-linux";
|
|
||||||
hardware = "qemu";
|
|
||||||
module = ./configuration.nix;
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
{
|
|
||||||
sconfig.profile = "server";
|
|
||||||
services.getty.autologinUser = "root";
|
|
||||||
fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; };
|
|
||||||
boot.loader.grub.device = "nodev";
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
pkgs = "unstable";
|
|
||||||
system = "x86_64-linux";
|
|
||||||
hardware = "qemu";
|
|
||||||
module = ./configuration.nix;
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{ config, lib, ... }:
|
|
||||||
{
|
|
||||||
imports = [ ../neo/configuration.nix ];
|
|
||||||
services.getty.autologinUser = "root";
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
pkgs = "unstable";
|
|
||||||
system = "x86_64-linux";
|
|
||||||
hardware = "qemu";
|
|
||||||
module = ./configuration.nix;
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
environment.systemPackages = [ pkgs.vmware-horizon-client ];
|
|
||||||
|
|
||||||
services.openssh.enable = true;
|
|
||||||
|
|
||||||
networking.search = [ "bck.me" ];
|
|
||||||
|
|
||||||
sconfig = {
|
|
||||||
profile = "desktop";
|
|
||||||
gnome = true;
|
|
||||||
security-tools = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
boot = {
|
|
||||||
loader.systemd-boot.enable = true;
|
|
||||||
loader.efi.canTouchEfiVariables = true;
|
|
||||||
initrd.luks.devices.cryptroot = { device = "/dev/disk/by-partlabel/_luks"; };
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems = {
|
|
||||||
"/" = { device = "/dev/mapper/cryptroot"; fsType = "btrfs"; options = [ "subvol=/os" "compress=zstd" ]; };
|
|
||||||
"/nix" = { device = "/dev/disk/by-id/wwn-0x5002538043584d30"; fsType = "btrfs"; options = [ "compress=zstd" "discard" ]; };
|
|
||||||
"/boot" = { device = "/dev/disk/by-partlabel/_esp"; fsType = "vfat"; };
|
|
||||||
};
|
|
||||||
|
|
||||||
system.stateVersion = "21.05";
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
pkgs = "nixpkgs";
|
|
||||||
system = "x86_64-linux";
|
|
||||||
hardware = "physical";
|
|
||||||
module = ./configuration.nix;
|
|
||||||
}
|
|
|
@ -1,37 +0,0 @@
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
sconfig = {
|
|
||||||
gnome = true;
|
|
||||||
profile = "desktop";
|
|
||||||
security-tools = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
networking = {
|
|
||||||
search = [ "bck.me" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
vmware-horizon-client
|
|
||||||
wine
|
|
||||||
winetricks
|
|
||||||
];
|
|
||||||
|
|
||||||
services = {
|
|
||||||
openssh.enable = true;
|
|
||||||
zfs.autoSnapshot = { enable = true; monthly = 0; weekly = 0; };
|
|
||||||
};
|
|
||||||
|
|
||||||
boot = {
|
|
||||||
loader.systemd-boot.enable = true;
|
|
||||||
loader.efi.canTouchEfiVariables = true;
|
|
||||||
kernelParams = map (x: "video=DP-${x}:1280x720@60") [ "0" "1" "2" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems = {
|
|
||||||
"/" = { device = "zroot/locker/os"; fsType = "zfs"; };
|
|
||||||
"/home" = { device = "zroot/locker/home"; fsType = "zfs"; };
|
|
||||||
"/boot" = { device = "/dev/disk/by-partlabel/_esp"; fsType = "vfat"; };
|
|
||||||
};
|
|
||||||
|
|
||||||
system.stateVersion = "20.09";
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
pkgs = "nixpkgs";
|
|
||||||
system = "x86_64-linux";
|
|
||||||
hardware = "physical";
|
|
||||||
module = ./configuration.nix;
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
services.openssh.enable = true;
|
|
||||||
|
|
||||||
networking.search = [ "bck.me" ];
|
|
||||||
|
|
||||||
sconfig = {
|
|
||||||
profile = "desktop";
|
|
||||||
gnome = true;
|
|
||||||
security-tools = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
boot = {
|
|
||||||
loader.timeout = pkgs.lib.mkForce 3;
|
|
||||||
loader.grub.enable = true;
|
|
||||||
loader.grub.device = "/dev/disk/by-id/wwn-0x50000391e71024d6";
|
|
||||||
initrd.luks.devices.cryptroot = { device = "/dev/disk/by-id/wwn-0x50000391e71024d6-part2"; };
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems = {
|
|
||||||
"/" = { device = "/dev/mapper/cryptroot"; fsType = "btrfs"; options = [ "subvol=/os" "compress=zstd" ]; };
|
|
||||||
"/home" = { device = "/dev/mapper/cryptroot"; fsType = "btrfs"; options = [ "subvol=/home" "compress=zstd" ]; };
|
|
||||||
"/boot" = { device = "/dev/disk/by-id/wwn-0x50000391e71024d6-part1"; fsType = "ext4"; };
|
|
||||||
};
|
|
||||||
|
|
||||||
system.stateVersion = "21.05";
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
pkgs = "nixpkgs";
|
|
||||||
system = "x86_64-linux";
|
|
||||||
hardware = "physical";
|
|
||||||
module = ./configuration.nix;
|
|
||||||
}
|
|
Loading…
Reference in a new issue