Add Steam module
This commit is contained in:
parent
d56ccd257c
commit
d9a1951dcb
2 changed files with 9 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./alacritty
|
./alacritty
|
||||||
./firefox
|
./firefox
|
||||||
|
./steam
|
||||||
./thunderbird
|
./thunderbird
|
||||||
# ./virtualbox
|
# ./virtualbox
|
||||||
];
|
];
|
||||||
|
|
8
nixos/modules/apps/steam/default.nix
Normal file
8
nixos/modules/apps/steam/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{ inputs, lib, config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.steam = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue