You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
-
107
77
## How to submit changes
108
78
109
79
Open a [pull request] to submit changes to this project.
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).
22
21
23
22
## Requirements
24
23
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:
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`.
71
44
72
45
## Usage
73
46
@@ -129,15 +102,9 @@ installed_packages:
129
102
- go
130
103
```
131
104
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.
133
106
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.
141
108
142
109
Other package managers:
143
110
@@ -152,8 +119,6 @@ npm_packages:
152
119
- name: webpack
153
120
```
154
121
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
-
157
122
Any variable can be overridden in **config.yml**; see the supporting roles' documentation for a complete list of available variables.
158
123
159
124
### Use with a remote machine
@@ -188,11 +153,11 @@ please [file an issue] along with a detailed description.
188
153
This project was inspired by [@geerlingguy]'s [Mac Development Ansible Playbook].
0 commit comments