Skip to content

Latest commit

 

History

History
55 lines (41 loc) · 959 Bytes

README.org

File metadata and controls

55 lines (41 loc) · 959 Bytes

My NixOS config

Commands

Rebuild the system

nixos-rebuild --use-remote-sudo --flakes . switch

Update flake.lock

nix flake update --commit-lock-file

Devices

Sally

My 2020 Slimbook Pro X AMD with blank keycaps

  • Usage: 2020 -
  • CPU: Ryzen 7 4800H
  • RAM: 16 GB @ 3200 GHz
  • SSD: Samsung 970 EVO Plus 1 TB
  • Keymap: bépo
  • WM: river
  • Editor: emacs

Flash

  • Usage: 2018 -
  • CPU: Ryzen 7 1700 @ 4 Ghz
  • RAM: 48 GB @ 3000 MHz
  • SSD: Samsung 840 PRO Series 256 GB
  • Disks:
    • 2 * 4 TB on ZFS in mirror
    • 1.5 TB + 2 TB on ZFS
    • 512 GB 2.5’ 5400 RPM for W10 VM

My nixsecrets repo

Here is what flake.nix looks like:

{
  description = "My NixOS secrets";

  outputs = { self, nixpkgs }: {
    secrets = with nixpkgs.lib; foldl (r: f: recursiveUpdate r (import f)) {} [
      /* paths to attribute sets */
    ];
  };
}