47 lines
735 B
Nix
47 lines
735 B
Nix
{
|
|
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
|
|
spotify
|
|
|
|
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";
|
|
}
|