sneeuwvlok/systems/x86_64-linux/orome/default.nix
Chris Kruining 01fb98ba10
Some checks failed
Test action / kaas (push) Failing after 1s
various fixes
2026-03-24 07:30:41 +01:00

30 lines
437 B
Nix

{pkgs, ...}: {
imports = [
./disks.nix
./hardware.nix
];
environment.systemPackages = with pkgs; [
azure-cli
github-copilot-cli
];
sneeuwvlok = {
hardware.has = {
bluetooth = true;
audio = true;
};
authentication.himmelblau.enable = true;
application = {
steam.enable = true;
};
editor = {
nano.enable = true;
};
};
system.stateVersion = "23.11";
}