move machine specific files to their own directory
All checks were successful
/ build-all (push) Successful in 1m37s
All checks were successful
/ build-all (push) Successful in 1m37s
This commit is contained in:
parent
09b1feb204
commit
5125e78b36
5 changed files with 9 additions and 9 deletions
|
|
@ -93,14 +93,14 @@
|
|||
nixosConfigurations.basado = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./os/configuration.nix
|
||||
./os/basado/configuration.nix
|
||||
];
|
||||
};
|
||||
|
||||
nixosConfigurations.moon = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./os/moon.nix
|
||||
./os/moon/configuration.nix
|
||||
];
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
{ config, pkgs, ... }:
|
||||
let sshKeys = with (import ../sshKeys.nix); [
|
||||
let sshKeys = with (import ../../sshKeys.nix); [
|
||||
moon
|
||||
];
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
./common.nix
|
||||
./common-graphics.nix
|
||||
(import ./remote-disk-unlock.nix sshKeys)
|
||||
../common.nix
|
||||
../common-graphics.nix
|
||||
(import ../remote-disk-unlock.nix sshKeys)
|
||||
];
|
||||
|
||||
boot.loader = {
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
{ config, pkgs, pkgs-unstable, ... }:
|
||||
{
|
||||
imports = [ # Include the results of the hardware scan.
|
||||
./moon-hardware-configuration.nix
|
||||
./common.nix
|
||||
./common-graphics.nix
|
||||
./hardware-configuration.nix
|
||||
../common.nix
|
||||
../common-graphics.nix
|
||||
];
|
||||
|
||||
# Bootloader.
|
||||
Loading…
Add table
Add a link
Reference in a new issue