17 lines
326 B
Nix
17 lines
326 B
Nix
# Consumes user.nix, configuration.nix
|
|
{ config, pkgs, lib, ... }:
|
|
{ config, pkgs, lib, ...}:
|
|
{
|
|
imports = [
|
|
./configuration.nix
|
|
./user.nix
|
|
];
|
|
calliope = {
|
|
hostName = "marcille";
|
|
ipv4Address = "172.18.154.50";
|
|
cec = "akristip";
|
|
username = "mira";
|
|
shell = pkgs.xonsh;
|
|
#password = "";
|
|
}
|
|
}
|