Nomenclature change: roles to profiles

This commit is contained in:
Craige McWhirter 2021-03-03 15:52:21 +10:00
parent e2f94d2ea9
commit 554b66dcde
Signed by: sercanto
GPG key ID: 7DBA9F5689EFB6AA
57 changed files with 55 additions and 56 deletions

View file

@ -5,8 +5,8 @@
{
imports =
[
../roles/host_common.nix
../roles/server_common.nix
../profiles/host_common.nix
../profiles/server_common.nix
];
# Ensure the right package architecture is used

View file

@ -6,9 +6,9 @@
[
<nixpkgs/nixos/modules/installer/scan/not-detected.nix>
../hardware/raspberry_pi_2_model_B.nix
../roles/host_common.nix
../roles/pi_common.nix
../roles/server_common.nix
../profiles/host_common.nix
../profiles/pi_common.nix
../profiles/server_common.nix
];
# Ensure the right package architecture is used

View file

@ -6,9 +6,9 @@
[
<nixpkgs/nixos/modules/installer/scan/not-detected.nix>
../hardware/raspberry_pi_3_model_B.nix
../roles/host_common.nix
../roles/pi_common.nix
../roles/server_common.nix
../profiles/host_common.nix
../profiles/pi_common.nix
../profiles/server_common.nix
];
# Ensure the right package architecture is used

View file

@ -7,8 +7,7 @@
imports =
[
../clusters/linode.nix
../roles/cardano-node.nix
#../roles/monitoring.nix
../profiles/cardano-node.nix
../secrets/airgead.nix
];

View file

@ -7,19 +7,19 @@
imports =
[
../clusters/linode.nix
../roles/coturn.nix
../roles/cryptpad.nix
../roles/cyclone-ibis.nix
../roles/gitea.nix
#../roles/hydra.nix
../roles/iohk.nix
../roles/matrix.nix
../roles/mcwhirter.io.nix
../roles/nextcloud.nix
../roles/nixpkgs-dev.nix
../roles/taskserver.nix
#../roles/tmate-ssh-server.nix
../roles/tt-rss.nix
../profiles/coturn.nix
../profiles/cryptpad.nix
#../profiles/cyclone-ibis.nix
../profiles/gitea.nix
#../profiles/hydra.nix
../profiles/iohk.nix
../profiles/matrix.nix
#../profiles/mcwhirter.io.nix
../profiles/nextcloud.nix
../profiles/nixpkgs-dev.nix
../profiles/taskserver.nix
#../profiles/tmate-ssh-server.nix
../profiles/tt-rss.nix
../secrets/gitea.nix
../secrets/tt-rss.nix
];

View file

@ -6,25 +6,25 @@
imports = [
../hardware/purism_librem_15.nix # Include the results of the hardware scan.
../roles/android.nix # Provide an Android dev environment
../roles/cron-craige.nix # Provide Craige's cron jobs
../roles/daedalus.nix # The open source cryptocurrency wallet for ADA
../roles/desktop-feeds.nix # Tools for news feeds and podcasts
../roles/haskell-dev.nix # Haskel dev environment
../roles/host_common.nix # Common host configuration options
../roles/iohk.nix # IOHK environment
../roles/neomutt.nix # Neomutt email
../roles/nix-community.nix # Nix community aarch64 tooling
../roles/nix-mio-ops.nix # mio-ops Nix tooling
../roles/nixpkgs-dev.nix # Nix pkgs dev tools
../roles/openssh.nix # Enable and configure openssh
../roles/qemu.nix # Qemu virtualisation
../roles/weechat.nix # Weechat environment
../roles/xmonad.nix # Xmonad desktop environment
../roles/yubikey.nix # Yubikey tooling
../secrets/craige.nix # Ssshhhhh!
../secrets/root.nix # Ssshhhhh!
../secrets/wireless.nix # Hey look! A squirrel!
../profiles/android.nix # Provide an Android dev environment
../profiles/cron-craige.nix # Provide Craige's cron jobs
../profiles/daedalus.nix # The open source cryptocurrency wallet for ADA
../profiles/desktop-feeds.nix # Tools for news feeds and podcasts
../profiles/haskell-dev.nix # Haskel dev environment
../profiles/host_common.nix # Common host configuration options
../profiles/iohk.nix # IOHK environment
../profiles/neomutt.nix # Neomutt email
../profiles/nix-community.nix # Nix community aarch64 tooling
../profiles/nix-mio-ops.nix # mio-ops Nix tooling
../profiles/nixpkgs-dev.nix # Nix pkgs dev tools
../profiles/openssh.nix # Enable and configure openssh
../profiles/qemu.nix # Qemu virtualisation
../profiles/weechat.nix # Weechat environment
../profiles/xmonad.nix # Xmonad desktop environment
../profiles/yubikey.nix # Yubikey tooling
../secrets/craige.nix # Ssshhhhh!
../secrets/root.nix # Ssshhhhh!
../secrets/wireless.nix # Hey look! A squirrel!
];
deployment.targetHost = "localhost";
@ -141,7 +141,7 @@
zlib
zlib.dev
(
import ../roles/vim.nix
import ../profiles/vim.nix
)
];

View file

@ -6,7 +6,7 @@
imports =
[
../hardware/lenovo_x201.nix
../roles/desktop_common.nix
../profiles/desktop_common.nix
];
# Use the GRUB 2 boot loader.

View file

@ -5,7 +5,7 @@
{
imports = [
../clusters/pi3B_rack.nix
../roles/transmission.nix
../profiles/transmission.nix
];
# Comment out deployment when building the SD Image.

View file

@ -6,7 +6,7 @@
imports =
[
../hardware/lenovo_x201.nix
../roles/desktop_common.nix
../profiles/desktop_common.nix
];
# Use the GRUB 2 boot loader.

View file

@ -6,9 +6,9 @@
imports =
[
../hardware/lenovo_x201.nix
../roles/desktop_common.nix
../roles/haskell-dev.nix
../roles/kids-dev.nix
../profiles/desktop_common.nix
../profiles/haskell-dev.nix
../profiles/kids-dev.nix
];
# Use the GRUB 2 boot loader.
@ -16,7 +16,7 @@
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/sda";
deployment.targetHost = "10.42.0.117";
deployment.targetHost = "10.42.0.127";
networking.hostName = "teintidh"; # Define your hostname.
system.stateVersion = "18.09"; # The version of NixOS originally installed

View file

@ -5,10 +5,10 @@
{
imports =
[
../roles/games-kids.nix
../roles/host_common.nix
../roles/daedalus.nix
../roles/openssh.nix
../profiles/games-kids.nix
../profiles/host_common.nix
../profiles/daedalus.nix
../profiles/openssh.nix
../secrets/user-craige.nix
../secrets/user-fiona.nix
../secrets/user-hamish.nix

View file

@ -91,7 +91,7 @@
#openssl # A cryptographic library that implements the SSL and TLS protocols
ripgrep # Utility that provides usability of The Silver Searcher with the raw speed of grep
(
import ../roles/vim.nix
import ../profiles/vim.nix
)
];
variables = {

View file

@ -6,7 +6,7 @@
imports =
[
../roles/openssh.nix
../profiles/openssh.nix
../secrets/user-craige.nix
../secrets/user-root.nix
];