nixos/flake.nix

46 lines
2 KiB
Nix
Raw Normal View History

2024-02-25 23:33:11 -08:00
{
2024-05-29 20:43:48 -07:00
description = "snowhawk: a nixos configuration flake";
2024-02-25 23:33:11 -08:00
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2024-10-02 07:07:25 -07:00
chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
2024-09-17 22:16:08 -07:00
lix-module = { url = "https://git.lix.systems/lix-project/nixos-module/archive/2.91.0.tar.gz"; inputs.nixpkgs.follows = "nixpkgs"; };
2024-08-21 23:53:25 -07:00
neovim-overlay = { url = "github:nix-community/neovim-nightly-overlay"; inputs.nixpkgs.follows = "nixpkgs"; };
home-manager = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; };
sops-nix = { url = "github:mic92/sops-nix"; inputs.nixpkgs.follows = "nixpkgs"; };
dunst-theme = { url = "github:d2718nis/rose-pine-dunst"; flake = false; };
2024-09-11 17:34:57 -07:00
niri = { url = "github:sodiboo/niri-flake"; inputs.nixpkgs.follows = "nixpkgs"; };
2024-08-01 00:05:46 -07:00
2024-11-05 00:55:25 -08:00
nix-darwin = { url = "github:LnL7/nix-darwin"; inputs.nixpkgs.follows = "nixpkgs"; };
2024-08-01 00:05:46 -07:00
repo-clone.url = "git+https://git.zynh.me/Zynh0722/repo-clone";
2024-12-08 21:55:32 -08:00
zdwm = { url = "git+https://git.zynh.me/Zynh0722/dwm?ref=preanybar-systray"; flake = false; };
2024-08-21 23:53:25 -07:00
fish_theme = { url = "git+https://git.zynh.me/Zynh0722/omf-theme"; flake = false; };
backgrounds = { url = "git+https://git.zynh.me/Zynh0722/backgrounds"; inputs.nixpkgs.follows = "nixpkgs"; };
2024-10-26 15:33:20 -07:00
umu = { url = "git+https://github.com/Open-Wine-Components/umu-launcher/?dir=packaging\/nix&submodules=1"; inputs.nixpkgs.follows = "nixpkgs"; };
2024-02-25 23:33:11 -08:00
};
2024-06-28 07:48:26 -07:00
outputs =
{ self, nixpkgs, ... }@inputs:
let
2024-08-22 00:17:55 -07:00
builders = import ./builders.nix inputs;
in
2024-02-25 23:33:11 -08:00
{
2024-11-05 17:11:49 -08:00
nixosConfigurations = builders.compileNixosSystems [
2024-08-22 00:12:30 -07:00
{ hostname = "snowhawk"; }
];
2024-08-10 11:21:22 -07:00
2024-11-05 17:13:01 -08:00
darwinConfigurations = builders.compileDarwinSystems [
{ hostname = "little-lightning"; }
];
2024-08-22 00:12:30 -07:00
homeConfigurations = builders.compileHomes [
{ user = "zynh"; hostname = "msiserver"; }
{ user = "val"; hostname = "caveserver"; }
2024-11-25 18:28:43 -08:00
{ user = "ravenshade"; hostname = "virtmsi"; }
2024-11-05 00:55:25 -08:00
];
2024-08-10 11:02:58 -07:00
overlays.default = import ./pkgs;
2024-02-25 23:33:11 -08:00
};
}