Rearrange file structure
This commit is contained in:
parent
de1bfdcbe6
commit
530274e081
8 changed files with 20 additions and 29 deletions
|
|
@ -21,14 +21,14 @@
|
||||||
{
|
{
|
||||||
darwinConfigurations."iMac" = nix-darwin.lib.darwinSystem {
|
darwinConfigurations."iMac" = nix-darwin.lib.darwinSystem {
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/darwin/iMac
|
./hosts/darwin/iMac/system.nix
|
||||||
];
|
];
|
||||||
specialArgs = { inherit nix-homebrew; };
|
specialArgs = { inherit nix-homebrew; };
|
||||||
};
|
};
|
||||||
|
|
||||||
darwinConfigurations."MacBook-Air" = nix-darwin.lib.darwinSystem {
|
darwinConfigurations."MacBook-Air" = nix-darwin.lib.darwinSystem {
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/darwin/MacBook-Air
|
./hosts/darwin/MacBook-Air/system.nix
|
||||||
];
|
];
|
||||||
specialArgs = { inherit nix-homebrew; };
|
specialArgs = { inherit nix-homebrew; };
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../../../home/common.nix
|
../home-default.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# MacBook Air-specific home configuration
|
# MacBook Air-specific home configuration
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@
|
||||||
|
|
||||||
# Import common Darwin configuration
|
# Import common Darwin configuration
|
||||||
imports = [
|
imports = [
|
||||||
../../../system
|
../system-default.nix
|
||||||
../../../system/darwin
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
@ -3,20 +3,20 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
nixvim.homeModules.nixvim
|
nixvim.homeModules.nixvim
|
||||||
../modules/nvim.nix
|
../../modules/nvim.nix
|
||||||
../modules/tmux.nix
|
../../modules/tmux.nix
|
||||||
../modules/zsh.nix
|
../../modules/zsh.nix
|
||||||
../modules/ssh.nix
|
../../modules/ssh.nix
|
||||||
../modules/git.nix
|
../../modules/git.nix
|
||||||
../modules/lazygit.nix
|
../../modules/lazygit.nix
|
||||||
../modules/papis.nix
|
../../modules/papis.nix
|
||||||
../modules/termscp.nix
|
../../modules/termscp.nix
|
||||||
../modules/rsync.nix
|
../../modules/rsync.nix
|
||||||
../modules/btop.nix
|
../../modules/btop.nix
|
||||||
../modules/firefox.nix
|
../../modules/firefox.nix
|
||||||
../modules/ghostty.nix
|
../../modules/ghostty.nix
|
||||||
../modules/syncthing.nix
|
../../modules/syncthing.nix
|
||||||
../config/fonts.nix
|
../../config/fonts.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../../../home/common.nix
|
../home-default.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# iMac-specific home configuration
|
# iMac-specific home configuration
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@
|
||||||
|
|
||||||
# Import common Darwin configuration
|
# Import common Darwin configuration
|
||||||
imports = [
|
imports = [
|
||||||
../../../system
|
../system-default.nix
|
||||||
../../../system/darwin
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
{ config, pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
];
|
|
||||||
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue