nix/nixos
genofire d90f0abf5c nixos/default: rename openssh.kbdInteractiveAuthentication 2022-01-23 22:43:00 +01:00
..
files nixos/default: add my tmux config ;) 2021-10-15 19:50:54 +02:00
README.md nixos: cleanup and documentat it 2021-10-09 01:49:34 +02:00
configuration.nix nixos: add server.nix for monitoring 2021-10-15 02:14:09 +02:00
default-hardware.nix nixos: open hardware for zrepl and prometheus 2021-10-15 01:52:30 +02:00
default.nix nixos/default: rename openssh.kbdInteractiveAuthentication 2022-01-23 22:43:00 +01:00
desktop-gnome.nix nixos: fix kdeconnect (and add gnomeExtensions) 2021-12-02 23:29:56 +01:00
desktop-sway.nix nixos: fix network only on sway with systemd-networkd 2021-12-02 23:30:42 +01:00
desktop.nix nixos: fix network only on sway with systemd-networkd 2021-12-02 23:30:42 +01:00
hw-intel.nix home,nixos: add hw to firefox 2021-11-26 18:31:47 +01:00
server.nix nixos: add server.nix for monitoring 2021-10-15 02:14:09 +02:00
users.nix home->nixos: restructure sway 2021-10-13 00:48:07 +02:00

README.md

NixOS

Create /etc/nixos/configuration.nix with:

{ config, pkgs, ... }:

{
  imports =
    [
      ./hardware-configuration.nix
      ./repo/default.nix
      ./repo/desktop.nix
      ./repo/genofire.nix
    ];

  system.stateVersion = "21.05";

  # boot
  boot.zfs.requestEncryptionCredentials = []; # list -> default: true - always request for password

  # --------
  # specifical this maschine:
  # --------

  networking.hostId = "6a465f93"; # zfs needed
  networking.hostName = "fireEmerald"; # Define your hostname.
  # cryptsetup
  # boot.initrd.luks.enable = true;
  boot.initrd.luks.devices = {
    "croot" = {
      device = "/dev/disk/by-uuid/e75385e9-b733-49d4-91fd-6ac2fa821195" ;
    };
  };
}

and run nixos-rebuild switch --upgrade