39 lines
1.3 KiB
Nix
39 lines
1.3 KiB
Nix
{
|
|
description = "snowhawk: a nixos configuration flake";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
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; };
|
|
|
|
repo-clone.url = "git+https://git.zynh.me/Zynh0722/repo-clone";
|
|
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"; };
|
|
};
|
|
|
|
outputs =
|
|
{ self, nixpkgs, ... }@inputs:
|
|
let
|
|
builders = import ./builders.nix inputs;
|
|
in
|
|
{
|
|
nixosConfigurations = builders.compileSystems [
|
|
{ hostname = "snowhawk"; }
|
|
];
|
|
|
|
homeConfigurations = builders.compileHomes [
|
|
{ user = "zynh"; hostname = "msiserver"; }
|
|
{ user = "val"; hostname = "caveserver"; }
|
|
{
|
|
user = "zynh";
|
|
hostname = "little-lightning";
|
|
system = "aarch64-darwin";
|
|
}
|
|
];
|
|
|
|
overlays.default = import ./pkgs;
|
|
};
|
|
}
|