nix-dotfiles/flake.nix

151 lines
3.3 KiB
Nix
Raw Normal View History

2022-03-07 16:01:52 +01:00
{
description = "Mmmmmh, Spaghetti";
inputs = {
2022-06-12 00:23:10 +02:00
nixpkgs.url = "nixpkgs/nixos-22.05";
2022-03-07 16:01:52 +01:00
home-manager = {
2022-06-12 00:23:10 +02:00
url = "github:nix-community/home-manager/release-22.05";
2022-03-07 16:01:52 +01:00
inputs.nixpkgs.follows = "nixpkgs";
};
2022-03-22 16:37:19 +01:00
dotfiles = {
url = "github:h7x4abk3g/dotfiles";
flake = false;
};
2022-03-07 16:01:52 +01:00
fonts = {
url = "path:/home/h7x4/git/fonts";
flake = false;
};
2022-03-22 23:05:42 +01:00
website = {
url = "git+https://git.nani.wtf/h7x4/nani.wtf?ref=main";
# url = "path:/home/h7x4/git/nani.wtf";
inputs.nixpkgs.follows = "nixpkgs";
};
2022-03-07 16:01:52 +01:00
# Nix expressions and keys (TODO: move keys to another solution like agenix)
# which should be kept from the main repo for privacy reasons.
#
# Includes stuff like usernames, emails, ports, other server users, ssh hosts, etc.
secrets = {
# TODO: Push this to a remote.
url = "git+file:///home/h7x4/git/nix-secrets";
inputs.nixpkgs.follows = "nixpkgs";
};
};
2022-03-22 23:05:42 +01:00
outputs = {
self,
nixpkgs,
home-manager,
secrets,
fonts,
2022-03-22 23:05:42 +01:00
dotfiles,
website,
...
}: let
2022-03-07 16:01:52 +01:00
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
config = {
allowUnfree = true;
android_sdk.accept_license = true;
};
overlays = [ self.overlays.lib ];
2022-03-07 16:01:52 +01:00
};
specialArgs = {
secrets = secrets.outputs.default;
colorTheme = import ./common/colors.nix;
2022-03-22 16:37:19 +01:00
inputs = {
inherit self;
2022-03-22 23:05:42 +01:00
inherit home-manager;
inherit dotfiles;
inherit fonts;
2022-03-22 23:05:42 +01:00
inherit website;
inherit secrets;
2022-03-22 16:37:19 +01:00
};
2022-03-07 16:01:52 +01:00
};
in {
overlays = {
lib = import ./overlays/lib;
};
lib = (pkgs.extend self.overlays.lib).lib;
packages.${system} = import ./pkgs { inherit pkgs; };
2022-03-07 16:01:52 +01:00
homeConfigurations = {
h7x4 = home-manager.lib.homeManagerConfiguration {
inherit system;
inherit pkgs;
extraSpecialArgs = specialArgs // {
machineVars = {
hostname = "machine";
headless = false;
screens = 1;
gaming = true;
laptop = false;
};
};
2022-03-07 16:01:52 +01:00
username = "h7x4";
homeDirectory = "/home/h7x4";
2022-06-12 00:23:10 +02:00
stateVersion = "22.05";
2022-03-07 16:01:52 +01:00
configuration = {
imports = [
./home.nix
];
};
};
};
nixosConfigurations = let
2022-03-07 16:01:52 +01:00
# String -> AttrSet -> AttrSet
nixSys = name: extraOpts: machineVars:
2022-03-07 16:01:52 +01:00
nixpkgs.lib.nixosSystem {
inherit system;
inherit pkgs;
inherit (pkgs) lib;
specialArgs = specialArgs // { inherit machineVars; };
2022-03-07 16:01:52 +01:00
modules = [
"${home-manager}/nixos"
./hosts/common.nix
2022-03-07 16:01:52 +01:00
./hosts/${name}/configuration.nix
];
} // extraOpts;
in {
Tsuki = nixSys "tsuki" {} {
hostname = "tsuki";
headless = true;
gaming = false;
laptop = false;
};
Eisei = nixSys "eisei" {} {
hostname = "eisei";
headless = false;
screens = 1;
gaming = false;
laptop = true;
};
kasei = nixSys "kasei" {} {
hostname = "kasei";
headless = false;
screens = 2;
gaming = true;
laptop = false;
};
2022-03-07 16:01:52 +01:00
};
};
}