Files
nix-config/flake.nix
T
autumn-the-kitty-cat 1b771db0c8 feat: switch over to a neovim cofeat & fix & refactor: so many things. listed in desc
switch over to a neovim configuration in lua, btrtile for dwl, remove
unnecessary things, some browser addons, rofimoji, fix february flake
2026-03-08 04:50:14 -04:00

64 lines
1.6 KiB
Nix

{
description = "autumn's NixOS & home-manager Configuration";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
stylix = {
url = "github:danth/stylix";
inputs.nixpkgs.follows = "nixpkgs";
};
base16 = {
url = "github:SenchoPens/base16.nix";
};
zen-browser = {
url = "github:0xc000022070/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-wallpaper = {
url = "github:lunik1/nix-wallpaper";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{ ... }@inputs:
let
userName = "autumn";
in
{
nixosConfigurations = {
"january" = inputs.nixpkgs.lib.nixosSystem {
specialArgs = {
hostName = "january";
inherit userName;
inherit inputs;
};
modules = [ ./host/pc/january/configuration.nix ];
};
"february" = inputs.nixpkgs.lib.nixosSystem {
specialArgs = {
hostName = "february";
inherit userName;
inherit inputs;
modules = [ ./host/pc/february/configuration.nix ];
};
};
"march" = inputs.nixpkgs.lib.nixosSystem {
specialArgs = {
inherit userName;
hostName = "march";
};
modules = [ ./host/server/march/configuration.nix ];
};
};
};
}