moved around dotfiles to focus around nix configuration, as most of my systems already utilize Nix/NixOS in some capacity.

This commit is contained in:
lulusilly 2025-12-25 15:34:38 -04:00
parent eb01c9561f
commit 890c29afca
28 changed files with 47 additions and 255 deletions

View file

@ -1,30 +0,0 @@
{
description = "System flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, ... }@inputs: {
nixosConfigurations = {
mecca = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {inherit inputs;};
modules = [
./hosts/common.nix
./hosts/mecca/configuration.nix
];
};
cantor = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {inherit inputs;};
modules = [
./hosts/common.nix
./hosts/cantor/configuration.nix
];
};
};
};
}