2021-10-09 01:49:34 +02:00
|
|
|
# NixOS
|
|
|
|
|
|
|
|
Create `/etc/nixos/configuration.nix` with:
|
|
|
|
```nix
|
|
|
|
{ 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`
|
2023-03-20 22:59:54 +01:00
|
|
|
|
|
|
|
## my current package channels
|
|
|
|
|
|
|
|
```
|
|
|
|
nix-channel --list
|
|
|
|
home-manager https://github.com/nix-community/home-manager/archive/master.tar.gz
|
|
|
|
nixos https://nixos.org/channels/nixos-unstable
|
|
|
|
nixpkgs https://nixos.org/channels/nixpkgs-unstable
|
|
|
|
```
|