Skip to content

Commit 81cbefe

Browse files
authored
Merge pull request #449 from staticdev/feature/install-packages-with-home-manager
NixOS config
2 parents 3f17871 + 837d8f0 commit 81cbefe

24 files changed

+483
-412
lines changed

.github/workflows/constraints.txt

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
pip==24.0
2-
ansible==9.2.0
3-
ansible-lint==24.2.0
1+
ansible==10.7.0
2+
ansible-lint==25.1.0
43
yamllint==1.35.1

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v5
2121
with:
22-
python-version: "3.12"
22+
python-version: "3.13"
2323

2424
- name: Check if there is a parent commit
2525
id: check-parent-commit

.github/workflows/tests.yml

+44-36
Original file line numberDiff line numberDiff line change
@@ -20,54 +20,62 @@ jobs:
2020
- name: Set up Python 3.
2121
uses: actions/setup-python@v5
2222
with:
23-
python-version: "3.12"
23+
python-version: "3.13"
2424

25-
- name: Upgrade pip
25+
- name: Install UV
26+
uses: astral-sh/setup-uv@v5
27+
with:
28+
version: ">=0.5.24"
29+
30+
- name: Create venv
2631
run: |
27-
pip install --constraint=.github/workflows/constraints.txt pip
28-
pip --version
32+
uv venv
2933
30-
- name: Upgrade ansible-lint
34+
- name: Install ansible-lint
3135
run: |
32-
pip install --constraint=.github/workflows/constraints.txt ansible-lint ansible
36+
uv pip install --constraint=.github/workflows/constraints.txt ansible-lint ansible
3337
34-
- name: Upgrade yamllint
38+
- name: Install yamllint
3539
run: |
36-
pip install --constraint=.github/workflows/constraints.txt yamllint
40+
uv pip install --constraint=.github/workflows/constraints.txt yamllint
3741
3842
- name: Lint code.
3943
run: |
40-
yamllint .
41-
ansible-lint
44+
uv run yamllint .
45+
uv run ansible-lint
4246
43-
molecule:
44-
name: Molecule
45-
runs-on: ubuntu-latest
47+
# molecule:
48+
# name: Molecule
49+
# runs-on: ubuntu-latest
4650

47-
strategy:
48-
matrix:
49-
distro:
50-
- debian12
51-
steps:
52-
- name: Check out the repository
53-
uses: actions/checkout@v4
51+
# strategy:
52+
# matrix:
53+
# distro:
54+
# - debian12
55+
# steps:
56+
# - name: Check out the repository
57+
# uses: actions/checkout@v4
5458

55-
- name: Set up Python
56-
uses: actions/setup-python@v5
57-
with:
58-
python-version: "3.12"
59+
# - name: Set up Python
60+
# uses: actions/setup-python@v5
61+
# with:
62+
# python-version: "3.13"
5963

60-
- name: Upgrade pip
61-
run: |
62-
python3 -m pip install --constraint=.github/workflows/constraints.txt pip
63-
python3 -m pip --version
64+
# - name: Install UV
65+
# uses: astral-sh/setup-uv@v5
66+
# with:
67+
# version: ">=0.5.24"
68+
69+
# - name: Create venv
70+
# run: |
71+
# uv venv
6472

65-
- name: Install test dependencies
66-
run: pip3 install --constraint=.github/workflows/constraints.txt ansible 'molecule-plugins[podman]' podman
73+
# - name: Install test dependencies
74+
# run: uv pip install --constraint=.github/workflows/constraints.txt ansible 'molecule-plugins[podman]' podman
6775

68-
- name: Run Molecule tests
69-
run: molecule -v test
70-
env:
71-
PY_COLORS: "1"
72-
ANSIBLE_FORCE_COLOR: "1"
73-
MOLECULE_DISTRO: ${{ matrix.distro }}
76+
# - name: Run Molecule tests
77+
# run: uv run molecule -v test
78+
# env:
79+
# PY_COLORS: "1"
80+
# ANSIBLE_FORCE_COLOR: "1"
81+
# MOLECULE_DISTRO: ${{ matrix.distro }}

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ config*.yml
77
.python-version
88
*.txt
99

10-
# Pycharm
10+
# Jetbrains IDEs
1111
.idea/
1212

1313
# Visual Studio Code
1414
.vscode/
15+
16+
**/flake.lock

.pre-commit-config.yaml

+1-15
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,11 @@
11
---
22
repos:
33
- repo: https://github.com/pre-commit/pre-commit-hooks
4-
rev: v4.3.0
4+
rev: v5.0.0
55
hooks:
66
- id: check-added-large-files
77
- id: check-toml
88
- id: check-yaml
99
- id: end-of-file-fixer
1010
- id: trailing-whitespace
1111
- id: check-added-large-files
12-
- repo: https://github.com/pre-commit/mirrors-prettier
13-
rev: v2.7.1
14-
hooks:
15-
- id: prettier
16-
- repo: https://github.com/adrienverge/yamllint.git
17-
rev: v1.26.3
18-
hooks:
19-
- id: yamllint
20-
args: ["-c=.yamllint", "."]
21-
- repo: https://github.com/ansible-community/ansible-lint.git
22-
rev: v6.10.2
23-
hooks:
24-
- id: ansible-lint
25-
files: \.(yaml|yml)$

.yamllint

+1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ rules:
1313
ignore: |
1414
.github/stale.yml
1515
.cache
16+
.venv
1617
roles

CONTRIBUTING.md

+2-32
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Request features on the [Issue Tracker].
3535

3636
## How to set up your development environment
3737

38-
You need Python 3.12+ and the following tools:
38+
You need Python 3.13+ and the following tools:
3939

4040
- [Molecule]
4141
- [Podman]
@@ -53,6 +53,7 @@ The good thing is to install them you just need [Ansible] and this playbook.
5353

5454
## How to test the project
5555

56+
5657
Run the tests locally:
5758

5859
```sh
@@ -73,37 +74,6 @@ vagrant up
7374

7475
The default password for `root` in the VM is `vagrant`.
7576

76-
#### Enabling contrib / non-free / non-free-firmware
77-
78-
Keep in mind one maybe need extra steps to enable extra apt packages eg. to install `torbrowser-launcher` (from contrib) or `firmware-amd-graphics` (from non-free-firmware):
79-
80-
1. comment out provision part of `Vagrantfile`:
81-
82-
```
83-
# Run playbook
84-
#config.vm.provision "ansible" do |ansible|
85-
# ansible.playbook = "main.yml"
86-
# ansible.verbose = "vv"
87-
#end
88-
```
89-
90-
1. run `vagrant up` and then `vagrant login`
91-
1. edit `/etc/apt/sources.list` to add the desired streams eg.:
92-
93-
```
94-
deb https://deb.debian.org/debian bookworm main contrib non-free-firmware
95-
deb-src https://deb.debian.org/debian bookworm main contrib non-free-firmware
96-
deb https://deb.debian.org/debian bookworm-updates main contrib non-free-firmware
97-
deb-src https://deb.debian.org/debian bookworm-updates main contrib non-free-firmware
98-
deb https://deb.debian.org/debian-security bookworm-security main contrib non-free-firmware
99-
deb-src https://deb.debian.org/debian-security bookworm-security main contrib non-free-firmware
100-
deb https://deb.debian.org/debian bookworm-backports main contrib non-free-firmware
101-
deb-src https://deb.debian.org/debian bookworm-backports main contrib non-free-firmware
102-
```
103-
104-
1. uncomment the provisioning part again on `Vagrantfile`
105-
1. run `vagrant provision`
106-
10777
## How to submit changes
10878

10979
Open a [pull request] to submit changes to this project.

README.md

+28-61
Original file line numberDiff line numberDiff line change
@@ -8,66 +8,39 @@
88

99
## Features
1010

11+
- Support processor architectures: x86_64 (only one for now, may be extended in the future).
1112
- Development: [Golang], [NodeJs] and [Python tools].
12-
- IDEs: [VSCodium] and [Pycharm] installation.
13-
- Browsers: [Firefox] ESR replacement with official PPA and configuration; and [Brave] installation.
14-
- Package manager installation: [Nix] and [Home Manager].
15-
- Packages intallation: apt, nix, snap, npm and ruby gems.
16-
- Note: pip packages are enforced to not be installed globally on Debian 12 by [PEP-668].
17-
- Replaces [LibreOffice] with [OnlyOffice].
18-
- Assorted FOSS programs: [Cryptomator], [KeyPass], [OBS], [OpenRGB], [RClone], and [Signal] messenger installation.
19-
- Configurations: dotfiles, shell/terminals, [Gnome], [Git], ssh, keyboard...
13+
- IDEs: [VSCodium] installation (via Nixpkgs).
14+
- Browsers: [Brave], [Firefox] and [Mullvad Browser] (via Nix).
15+
- Containers and virtualization: [Docker], [Podman] and [libvirtd].
16+
- Office: installs [OnlyOffice] (via Nixpkgs).
17+
- Assorted FOSS programs: [Cryptomator], [KeyPass], [OBS] (via Nixpkgs), [OpenRGB], [RClone], and [Signal] (via Nixpkgs) messenger installation.
18+
- Configurations: dotfiles, zsh (via Nix), terminals, [Gnome], [Git], ssh, keyboard...
2019

21-
Note: this is an opinionated setup I personally use for software development on [Debian] 12. You can customize all the changes following instructions in [Overriding Defaults](#overriding-defaults).
20+
Note: this is an opinionated setup I personally use for software development on [NixOS](https://nixos.org). You can customize all the changes following instructions in [Overriding Defaults](#overriding-defaults).
2221

2322
## Requirements
2423

25-
1. [Ansible] installed:
26-
27-
```sh
28-
sudo apt install ansible-core
29-
```
30-
31-
If you get an error saying no installation candidate, edit your apt sources files with:
32-
33-
```sh
34-
sudo gedit /etc/apt/sources.list
35-
```
36-
37-
Remove DVD repos (if you see them) and make sure you have:
38-
39-
```sh
40-
deb http://deb.debian.org/debian/ bookworm main contrib non-free-firmware
41-
deb-src http://deb.debian.org/debian/ bookworm main contrib non-free-firmware
42-
43-
deb http://security.debian.org/debian-security bookworm-security main contrib non-free-firmware
44-
deb-src http://security.debian.org/debian-security bookworm-security main contrib non-free-firmware
45-
46-
# bookworm-updates, to get updates before a point release is made;
47-
# see https://www.debian.org/doc/manuals/debian-reference/ch02.en.html#_updates_and_backports
48-
deb http://deb.debian.org/debian/ bookworm-updates main contrib non-free-firmware
49-
deb-src http://deb.debian.org/debian/ bookworm-updates main contrib non-free-firmware
50-
```
51-
52-
1. If **~/.local/bin** is not on **echo \$PATH**, you can add it with the command:
53-
54-
```sh
55-
sudo echo 'export PATH=$PATH:~/.local/bin' >> ~/.bashrc && source ~/.bashrc
56-
```
24+
1. Install latest stable, recommended Minimal ISO image from [NixOS download ISO page](https://nixos.org/download/#nixos-iso).
25+
1. [Ansible] installed. Make sure you have it in you `local.nix` either in `systemWidePkgs` or `mainUser.pkgs`.
5726

5827
## Installation
5928

60-
1. [Download] and extract this playbook or clone this repository to your local drive.
29+
1. Create a `local.nix` file from [eg folder](eg/local.nix) and change:
30+
- git variables.
31+
- main Linux username.
32+
- timezone.
33+
- browser configurations.
34+
1. Create at /etc/nixos a `flake.nix` file [eg folder](eg/flake.nix).
6135

6236
```sh
63-
git clone [email protected]:staticdev/linux-workstation-playbook.git
37+
curl -s "https://raw.githubusercontent.com/staticdev/linux-workstation-playbook/main/eg/flake.nix?token=$(date +%s)" -o /etc/nixos/flake.nix
38+
nixos-generate-config
39+
nixos-rebuild boot --upgrade-all
6440
```
6541

66-
1. Install dependencies by entering the terminal in the playbook folder and run the command:
67-
68-
```sh
69-
ansible-galaxy install -fr requirements.yml
70-
```
42+
1. Rebuild hardware config with `sudo nixos-generate-config`.
43+
1. Rebuild your system with `sudo nixos-rebuild boot --upgrade-all`.
7144

7245
## Usage
7346

@@ -129,15 +102,9 @@ installed_packages:
129102
- go
130103
```
131104
132-
For [Nix] packages, it is necessary to specify a command that will verify if it is already installed, most binaries support `--version` or just `version`, eg:
105+
To have you own dotfiles, just fork the [dotfiles eg. repo] and change the url of `dotfiles_repo` or just change `configure_dotfiles` to false if you do not want it.
133106

134-
```yaml
135-
nix_packages:
136-
- name: git
137-
check_cmd: git --version
138-
- name: kubectl
139-
check_cmd: kubectl version --client
140-
```
107+
For [Nix] packages, update your [Home Manager] config on your dotfiles repo.
141108

142109
Other package managers:
143110

@@ -152,8 +119,6 @@ npm_packages:
152119
- name: webpack
153120
```
154121

155-
To have you own dotfiles, just fork the [dotfiles eg. repo] and change the url of `dotfiles_repo` or just change `configure_dotfiles` to false if you do not want it.
156-
157122
Any variable can be overridden in **config.yml**; see the supporting roles' documentation for a complete list of available variables.
158123

159124
### Use with a remote machine
@@ -188,11 +153,11 @@ please [file an issue] along with a detailed description.
188153
This project was inspired by [@geerlingguy]'s [Mac Development Ansible Playbook].
189154

190155
[@geerlingguy]: https://github.com/geerlingguy
191-
[ansible]: https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html
192156
[brave]: https://brave.com/
193157
[contributor guide]: https://github.com/staticdev/linux-workstation-playbook/blob/main/CONTRIBUTING.md
194158
[cryptomator]: https://cryptomator.org/
195159
[debian]: https://www.debian.org/
160+
[docker]: https://www.docker.com/
196161
[dotfiles eg. repo]: https://github.com/staticdev/dotfiles-eg
197162
[download]: https://github.com/staticdev/linux-workstation-playbook/archive/refs/heads/main.zip
198163
[file an issue]: https://github.com/staticdev/linux-workstation-playbook/issues
@@ -201,17 +166,19 @@ This project was inspired by [@geerlingguy]'s [Mac Development Ansible Playbook]
201166
[gnome]: https://www.gnome.org/
202167
[golang]: https://go.dev/
203168
[home manager]: https://github.com/nix-community/home-manager
204-
[libreoffice]: https://www.libreoffice.org/
169+
[libvirtd]: https://libvirt.org/manpages/libvirtd.html
205170
[nodejs]: https://nodejs.org/
206171
[keypass]: https://keepass.info/
207172
[mac development ansible playbook]: https://github.com/geerlingguy/mac-dev-playbook
208173
[mit]: https://opensource.org/licenses/MIT
174+
[mullvad browser]: https://mullvad.net/en/browser
209175
[nix]: https://nixos.org/
176+
[nixos download iso page]: https://nixos.org/download/#nixos-iso
210177
[obs]: https://obsproject.com/
211178
[onlyoffice]: https://github.com/ONLYOFFICE/
212179
[openrgb]: https://gitlab.com/CalcProgrammer1/OpenRGB
213180
[pep-668]: https://peps.python.org/pep-0668/
214-
[pycharm]: https://www.jetbrains.com/pycharm/
181+
[podman]: https://podman.io/
215182
[python tools]: https://github.com/staticdev/ansible-role-python-developer
216183
[rclone]: https://rclone.org/
217184
[signal]: https://signal.org

0 commit comments

Comments
 (0)