blob: 0d60b492510322a2766d3a6b6cf6c0c7051e049e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ config, pkgs, ... }:
{
imports = [
./foot.nix
./fuzzel.nix
./librewolf.nix
./niri
];
fonts.fontconfig.enable = true;
home.packages = with pkgs; [
brightnessctl
fira-code
];
}
|