Files
dotfiles/hosts/tardis/default.nix
T
2026-07-07 12:44:43 +01:00

29 lines
463 B
Nix

{ config, lib, pkgs, inputs, ... }:
{
imports =
[
./hardware-configuration.nix
];
boot.blacklistedKernelModules = [
"nouveau"
];
environment.systemPackages = lib.mkAfter (with pkgs; [
firefox
kitty
rofi
inputs.kutu.packages.${pkgs.system}.default
]);
services.xserver = {
enable = true;
displayManager.startx.enable = true;
videoDrivers = [ "modesetting" ];
};
networking.hostName = "tardis";
}