Switch to lix

This commit is contained in:
monologiq 2025-12-23 17:20:55 +01:00
parent 764a05c73c
commit d0c6f19a09
22 changed files with 544 additions and 632 deletions

24
machines/hermes.nix Normal file
View file

@ -0,0 +1,24 @@
{ config, pkgs, ... }:
{
environment.systemPackages = [
pkgs.vim
];
nix = {
channel.enable = false;
package = pkgs.lixPackageSets.stable.lix;
settings.experimental-features = [
"nix-command"
"flakes"
];
};
environment.darwinConfig = "/Users/${config.system.primaryUser}/Development/systems";
system.primaryUser = "pml";
nixpkgs.hostPlatform = "aarch64-darwin";
system.stateVersion = 6;
}