mirror of
https://github.com/kp2pml30/dotfiles.git
synced 2026-02-16 23:34:42 +04:00
22 lines
232 B
Nix
22 lines
232 B
Nix
{ pkgs
|
|
, lib
|
|
, config
|
|
, ...
|
|
}:
|
|
let
|
|
cfg = config.kp2pml30;
|
|
in {
|
|
imports = [
|
|
./x.nix
|
|
./kitty.nix
|
|
./vscode.nix
|
|
|
|
./opera.nix
|
|
./steam.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
fira-code
|
|
fira-code-nerdfont
|
|
];
|
|
}
|