move machine specific files to their own directory
Some checks failed
/ build-all (push) Failing after 2s
Some checks failed
/ build-all (push) Failing after 2s
This commit is contained in:
parent
058d223259
commit
34e8ea67fc
5 changed files with 7 additions and 7 deletions
|
|
@ -93,14 +93,14 @@
|
||||||
nixosConfigurations.basado = nixpkgs.lib.nixosSystem {
|
nixosConfigurations.basado = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [
|
modules = [
|
||||||
./os/configuration.nix
|
./os/basado/configuration.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
nixosConfigurations.moon = nixpkgs.lib.nixosSystem {
|
nixosConfigurations.moon = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [
|
modules = [
|
||||||
./os/moon.nix
|
./os/moon/configuration.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,9 +6,9 @@ in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./common.nix
|
../common.nix
|
||||||
./common-graphics.nix
|
../common-graphics.nix
|
||||||
(import ./remote-disk-unlock.nix sshKeys)
|
(import ../remote-disk-unlock.nix sshKeys)
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.loader = {
|
boot.loader = {
|
||||||
|
|
@ -2,8 +2,8 @@
|
||||||
{
|
{
|
||||||
imports = [ # Include the results of the hardware scan.
|
imports = [ # Include the results of the hardware scan.
|
||||||
./moon-hardware-configuration.nix
|
./moon-hardware-configuration.nix
|
||||||
./common.nix
|
../common.nix
|
||||||
./common-graphics.nix
|
../common-graphics.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
Loading…
Add table
Add a link
Reference in a new issue