all repos — nixfiles @ 340b2c244c0b7c331f6633edf9a69f1381916ad2

System and user configuration, managed by nix and home-manager

Add 'system/' from commit '5016c7440ad771fd990e1aa142fc4de0bdc382bd' git-subtree-dir: system git-subtree-mainline: ec7f1357d16ff2f4aa7430a2940a0b9519018595 git-subtree-split: 5016c7440ad771fd990e1aa142fc4de0bdc382bd

Alan Pearce
commit

340b2c244c0b7c331f6633edf9a69f1381916ad2

parent

ec7f1357d16ff2f4aa7430a2940a0b9519018595

1 file changed, 38 insertions(+), 0 deletions(-)

changed files
A system/marvin.nix
@@ -0,0 +1,38 @@
+{ config, pkgs, ... }: + +{ imports = [ + ./hardware-configuration.nix + + ./modules/base.nix + ./modules/configuration/berlin.nix + ./modules/configuration/british-english.nix + ./modules/configuration/nix.nix + ./modules/configuration/user.nix + ./modules/development/base.nix + ./modules/development/javascript.nix + ./modules/development/lisp.nix + ./modules/hardware/adb.nix + ./modules/hardware/audio.nix + ./modules/hardware/qwerty.nix + ./modules/hardware/network-manager.nix + ./modules/hardware/nitrokey.nix + ./modules/hardware/systemd-boot.nix + ./modules/hardware/trackball.nix + ./modules/hardware/trezor.nix + ./modules/machines/x250.nix + ./modules/programs/accounting.nix + ./modules/programs/dotfiles.nix + ./modules/programs/i3.nix + ./modules/programs/infrastructure.nix + ./modules/programs/passwords.nix + ./modules/programs/shell.nix + ./modules/services/syncthing.nix + ]; + + networking = { + hostName = "marvin"; + domain = "alanpearce.eu"; + }; + + system.stateVersion = "18.09"; +}