summaryrefslogtreecommitdiff
path: root/common/programs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'common/programs/default.nix')
-rw-r--r--common/programs/default.nix29
1 files changed, 15 insertions, 14 deletions
diff --git a/common/programs/default.nix b/common/programs/default.nix
index ccca727..ffffc41 100644
--- a/common/programs/default.nix
+++ b/common/programs/default.nix
@@ -1,19 +1,20 @@
{ pkgs, ... }:
let
- programs = [
- "hyprland"
- "neovim"
- "zsh"
- "ydotool"
- ];
+ programs = [
+ "hyprland"
+ "neovim"
+ "zsh"
+ "ydotool"
+ "steam"
+ ];
in
builtins.listToAttrs (
- map (n: {
- name = n;
- value =
- if builtins.pathExists ./${n}.nix then
- (import ./${n}.nix { inherit pkgs; })
- else
- { enable = true; };
- }) programs
+ map (n: {
+ name = n;
+ value =
+ if builtins.pathExists ./${n}.nix then
+ (import ./${n}.nix { inherit pkgs; })
+ else
+ { enable = true; };
+ }) programs
)