39 lines
705 B
Nix
39 lines
705 B
Nix
{ config, lib, pkgs, inputs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
|
|
../../modules/ollama
|
|
../../modules/workstation/graphics.nix
|
|
../../modules/workstation/audio.nix
|
|
../../modules/workstation/xserver.nix
|
|
../../modules/workstation/keyd.nix
|
|
];
|
|
|
|
environment.systemPackages = lib.mkAfter (with pkgs; [
|
|
firefox
|
|
xdg-utils
|
|
dmenu
|
|
pulseaudio
|
|
brightnessctl
|
|
maim
|
|
xclip
|
|
xsel
|
|
prismlauncher
|
|
|
|
inputs.kutu.packages.${stdenv.hostPlatform.system}.default
|
|
]);
|
|
|
|
fonts.packages = with pkgs; [
|
|
nerd-fonts.hurmit
|
|
nerd-fonts.agave
|
|
unifont
|
|
];
|
|
|
|
programs.steam.enable = true;
|
|
|
|
networking.hostName = "tardis";
|
|
}
|