mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
Done?
This commit is contained in:
parent
0712b63194
commit
cc18493707
26 changed files with 1203 additions and 799 deletions
16
homeConfig/modules/fun.nix
Normal file
16
homeConfig/modules/fun.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ pkgs, lib, config, ... }:
|
||||
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.PROGRAM;
|
||||
|
||||
in
|
||||
{ options.modules.PROGRAM = { enable = mkEnableOption "PROGRAM"; };
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
spotify
|
||||
discord
|
||||
steam
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue