11 lines
111 B
Nix
11 lines
111 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./desktop.nix
|
||
|
];
|
||
|
|
||
|
home.packages = with pkgs; [
|
||
|
prismlauncher
|
||
|
];
|
||
|
}
|