-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add development goodies to Qubes Builder
- Loading branch information
1 parent
7df3be4
commit 4276358
Showing
4 changed files
with
46 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{# | ||
SPDX-FileCopyrightText: 2024 Benjamin Grande M. S. <[email protected]> | ||
|
||
SPDX-License-Identifier: AGPL-3.0-or-later | ||
#} | ||
|
||
{% if grains['nodename'] != 'dom0' -%} | ||
|
||
include: | ||
- utils.tools.common.update | ||
- dotfiles.copy-vim | ||
- dotfiles.copy-tmux | ||
|
||
"{{ slsdotpath }}-installed-dev": | ||
pkg.installed: | ||
- require: | ||
- sls: utils.tools.common.update | ||
- install_recommends: False | ||
- skip_suggestions: True | ||
- pkgs: | ||
- vim-enhanced | ||
- tmux | ||
- xclip | ||
- bash-completion | ||
- man-db | ||
- tree | ||
- ripgrep | ||
- fzf | ||
|
||
{% endif -%} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{# | ||
SPDX-FileCopyrightText: 2023 - 2024 Benjamin Grande M. S. <[email protected]> | ||
|
||
SPDX-License-Identifier: AGPL-3.0-or-later | ||
#} | ||
|
||
base: | ||
'tpl-qubes-builder': | ||
- qubes-builder.install-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{# | ||
SPDX-FileCopyrightText: 2023 - 2024 Benjamin Grande M. S. <[email protected]> | ||
SPDX-FileCopyrightText: 2024 Benjamin Grande M. S. <[email protected]> | ||
|
||
SPDX-License-Identifier: AGPL-3.0-or-later | ||
#} | ||
|
@@ -27,10 +27,6 @@ include: | |
- install_recommends: False | ||
- skip_suggestions: True | ||
- pkgs: | ||
## Goodies | ||
- rpmautospec | ||
- rpmlint | ||
- vim-enhanced | ||
## Minimal template dependencies | ||
- qubes-core-agent-networking | ||
- qubes-core-agent-passwordless-root | ||
|