configurations of hq services
https://hydra.hq.c3d2.de/jobset/c3d2/nix-config#tabs-jobs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
863 B
27 lines
863 B
# Edit this configuration file to define what should be installed on |
|
# your system. Help is available in the configuration.nix(5) man page |
|
# and in the NixOS manual (accessible by running ‘nixos-help’). |
|
|
|
{ config, pkgs, lib, ... }: |
|
|
|
{ |
|
imports = |
|
[ ../../lib/lxc-container.nix |
|
../../lib/shared.nix |
|
]; |
|
|
|
networking.hostName = "nixbert"; # Define your hostname. |
|
networking.useNetworkd = false; |
|
|
|
# List packages installed in system profile. To search, run: |
|
# $ nix search wget |
|
environment.systemPackages = with pkgs; [ |
|
wget vim |
|
]; |
|
|
|
# This value determines the NixOS release with which your system is to be |
|
# compatible, in order to avoid breaking some software such as database |
|
# servers. You should change this only after NixOS release notes say you |
|
# should. |
|
system.stateVersion = "18.09"; # Did you read the comment? |
|
}
|
|
|