Tidying up dir hierarchy
This commit is contained in:
parent
56ae99d891
commit
8a583221de
|
@ -25,7 +25,7 @@
|
||||||
specialArgs.inputs = inputs;
|
specialArgs.inputs = inputs;
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
./system/ritchie.nix
|
./system/ritchie/ritchie.nix
|
||||||
|
|
||||||
hyprland.nixosModules.default
|
hyprland.nixosModules.default
|
||||||
{
|
{
|
||||||
|
@ -55,7 +55,7 @@
|
||||||
specialArgs.inputs = inputs;
|
specialArgs.inputs = inputs;
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
./system/thompson.nix
|
./system/thompson/thompson.nix
|
||||||
|
|
||||||
hyprland.nixosModules.default
|
hyprland.nixosModules.default
|
||||||
{ programs.hyprland.enable = true; }
|
{ programs.hyprland.enable = true; }
|
||||||
|
@ -76,7 +76,7 @@
|
||||||
specialArgs.inputs = inputs;
|
specialArgs.inputs = inputs;
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
./system/miyamoto.nix
|
./system/miyamoto/miyamoto.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -86,7 +86,7 @@
|
||||||
specialArgs.inputs = inputs;
|
specialArgs.inputs = inputs;
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
./system/kernighan.nix
|
./system/kernighan/kernighan.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -4,8 +4,8 @@
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
./shared-configuration.nix
|
../shared-configuration.nix
|
||||||
./kernighan-hardware.nix
|
./hardware.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
networking = {
|
networking = {
|
|
@ -4,8 +4,8 @@
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
./shared-configuration.nix
|
../shared/shared-configuration.nix
|
||||||
./desktop-configuration.nix
|
../shared/desktop-configuration.nix
|
||||||
./miyamoto-hardware.nix
|
./miyamoto-hardware.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -13,11 +13,11 @@ in
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
./shared-configuration.nix
|
../shared/shared-configuration.nix
|
||||||
./desktop-configuration.nix
|
../shared/desktop-configuration.nix
|
||||||
./desktop.nix
|
../shared/desktop.nix
|
||||||
./ritchie-hardware.nix
|
./ritchie-hardware.nix
|
||||||
./filesystem.nix
|
../shared/filesystem.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.hostName = "ritchie";
|
networking.hostName = "ritchie";
|
||||||
|
@ -28,7 +28,7 @@ in
|
||||||
"tmux"
|
"tmux"
|
||||||
];
|
];
|
||||||
openssh.authorizedKeys.keyFiles = [
|
openssh.authorizedKeys.keyFiles = [
|
||||||
../users/foxsoft/authorized_keys
|
../../users/foxsoft/authorized_keys
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
];
|
];
|
||||||
initialPassword = "password";
|
initialPassword = "password";
|
||||||
openssh.authorizedKeys.keyFiles = [
|
openssh.authorizedKeys.keyFiles = [
|
||||||
../users/tsv/authorized_keys
|
../../users/tsv/authorized_keys
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
@ -13,11 +13,11 @@ in
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
./shared-configuration.nix
|
../shared/shared-configuration.nix
|
||||||
./desktop-configuration.nix
|
../shared/desktop-configuration.nix
|
||||||
./desktop.nix
|
../shared/desktop.nix
|
||||||
./thompson-hardware.nix
|
./thompson-hardware.nix
|
||||||
./filesystem.nix
|
../shared/filesystem.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.hostName = "thompson";
|
networking.hostName = "thompson";
|
Loading…
Reference in New Issue