nix-config/hosts/hypnos/default.nix
Jordan Holt baac9ac61f
Some checks failed
Check flake / build-amd64-linux (push) Has been cancelled
Remove GPU patch from hypnos
2024-06-15 22:10:36 +01:00

44 lines
691 B
Nix

{ config, lib, ... }:
{
imports = [
./hardware-configuration.nix
./disko-config.nix
../desktop.nix
];
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
networking.hostId = "cf791898";
modules = {
desktop = {
browsers = {
firefox.enable = true;
};
media.recording = {
audio.enable = true;
};
};
dev = {
node.enable = true;
};
editors = {
neovim.enable = true;
};
security = {
gpg.enable = true;
pass.enable = true;
};
shell = {
git.enable = true;
zsh.enable = true;
};
};
system.stateVersion = "22.11";
}