blog/content/posts/nixcon2023/demo-config/configuration.nix
2023-09-09 01:49:05 -07:00

9 lines
180 B
Nix

{ pkgs, config, ... }: {
programs.fish.enable = true;
fileSystems."/" = {
device = "/dev/sda1";
};
boot.loader.grub.enable = false;
system.stateVersion = "23.05";
}