29 lines
463 B
Nix
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";
|
|
}
|