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-11-19 16:14:18 +01:00
|
|
|
nixpkgs-unstable.url = "nixpkgs/nixos-unstable";
|
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-08-18 23:56:03 +02:00
|
|
|
# url = "git+file:///home/h7x4/git/home-manager";
|
2022-03-07 16:01:52 +01:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2022-04-03 18:03:55 +02:00
|
|
|
|
2022-03-22 16:37:19 +01:00
|
|
|
dotfiles = {
|
|
|
|
url = "github:h7x4abk3g/dotfiles";
|
|
|
|
flake = false;
|
|
|
|
};
|
2022-03-07 16:01:52 +01:00
|
|
|
|
2022-04-03 18:03:55 +02: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-06-21 01:47:36 +02:00
|
|
|
vscode-server = {
|
|
|
|
url = "github:msteen/nixos-vscode-server";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
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-06-21 01:47:36 +02:00
|
|
|
outputs = inputs@{
|
2022-03-22 23:05:42 +01:00
|
|
|
self,
|
|
|
|
nixpkgs,
|
2022-11-19 16:14:18 +01:00
|
|
|
nixpkgs-unstable,
|
2022-03-22 23:05:42 +01:00
|
|
|
home-manager,
|
2022-06-21 01:47:36 +02:00
|
|
|
vscode-server,
|
2022-03-22 23:05:42 +01:00
|
|
|
secrets,
|
2022-04-03 18:03:55 +02:00
|
|
|
fonts,
|
2022-03-22 23:05:42 +01:00
|
|
|
dotfiles,
|
2022-11-19 16:14:18 +01:00
|
|
|
website
|
2022-03-22 23:05:42 +01:00
|
|
|
}: let
|
2022-03-07 16:01:52 +01:00
|
|
|
system = "x86_64-linux";
|
|
|
|
|
2022-11-19 16:14:18 +01:00
|
|
|
pkgs-config = {
|
2022-03-07 16:01:52 +01:00
|
|
|
inherit system;
|
|
|
|
|
|
|
|
config = {
|
|
|
|
allowUnfree = true;
|
|
|
|
android_sdk.accept_license = true;
|
|
|
|
};
|
|
|
|
|
2022-11-19 16:14:18 +01:00
|
|
|
# overlays = [ self.overlays.lib ];
|
2022-08-18 23:15:50 +02:00
|
|
|
};
|
|
|
|
|
2022-11-19 16:14:18 +01:00
|
|
|
pkgs = import nixpkgs pkgs-config;
|
|
|
|
unstable-pkgs = import nixpkgs-unstable pkgs-config;
|
2022-03-07 16:01:52 +01:00
|
|
|
in {
|
2022-11-19 16:14:18 +01:00
|
|
|
extendedLib = import ./lib { stdlib = pkgs.lib; };
|
2022-04-03 18:03:55 +02:00
|
|
|
|
2022-03-07 16:01:52 +01:00
|
|
|
homeConfigurations = {
|
|
|
|
h7x4 = home-manager.lib.homeManagerConfiguration {
|
|
|
|
inherit system;
|
|
|
|
inherit pkgs;
|
|
|
|
|
|
|
|
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 = [
|
2022-08-19 01:54:13 +02:00
|
|
|
./home/home.nix
|
2022-06-21 01:47:36 +02:00
|
|
|
./modules
|
2022-03-07 16:01:52 +01:00
|
|
|
];
|
2022-06-21 01:47:36 +02:00
|
|
|
|
|
|
|
machineVars = {
|
|
|
|
headless = false;
|
|
|
|
fixDisplayCommand = "echo 'not available'";
|
|
|
|
gaming = true;
|
|
|
|
development = true;
|
|
|
|
laptop = false;
|
|
|
|
};
|
2022-03-07 16:01:52 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
nixosConfigurations = let
|
2022-06-21 01:47:36 +02:00
|
|
|
nixSys = name:
|
2022-03-07 16:01:52 +01:00
|
|
|
nixpkgs.lib.nixosSystem {
|
|
|
|
inherit system;
|
|
|
|
inherit pkgs;
|
2022-04-03 18:03:55 +02:00
|
|
|
inherit (pkgs) lib;
|
2022-03-07 16:01:52 +01:00
|
|
|
modules = [
|
2022-04-03 18:03:55 +02:00
|
|
|
"${home-manager}/nixos"
|
2022-06-21 01:47:36 +02:00
|
|
|
./modules
|
2022-04-03 18:03:55 +02:00
|
|
|
./hosts/common.nix
|
2022-03-07 16:01:52 +01:00
|
|
|
./hosts/${name}/configuration.nix
|
2022-06-21 01:47:36 +02:00
|
|
|
"${vscode-server}/default.nix"
|
2022-08-19 14:50:03 +02:00
|
|
|
|
|
|
|
secrets.outputs.nixos-config
|
|
|
|
|
2022-08-18 23:15:50 +02:00
|
|
|
{
|
|
|
|
config._module.args = {
|
|
|
|
inherit inputs;
|
|
|
|
inherit unstable-pkgs;
|
2022-11-19 16:14:18 +01:00
|
|
|
inherit (self) extendedLib;
|
2022-08-19 14:50:03 +02:00
|
|
|
secrets = secrets.outputs.settings;
|
2022-08-18 23:15:50 +02:00
|
|
|
};
|
|
|
|
}
|
2022-08-19 14:50:03 +02:00
|
|
|
|
|
|
|
({ config, ... }:
|
|
|
|
{
|
|
|
|
home-manager = {
|
|
|
|
useGlobalPkgs = true;
|
2022-11-19 16:14:18 +01:00
|
|
|
extraSpecialArgs = {
|
|
|
|
inherit inputs;
|
|
|
|
inherit (self) extendedLib;
|
|
|
|
secrets = secrets.outputs.settings;
|
|
|
|
};
|
2022-08-19 14:50:03 +02:00
|
|
|
|
|
|
|
users.h7x4 = import ./home/home.nix {
|
|
|
|
inherit pkgs;
|
|
|
|
inherit inputs;
|
2022-11-19 16:14:18 +01:00
|
|
|
inherit (pkgs) lib;
|
2022-08-19 14:50:03 +02:00
|
|
|
inherit (config) machineVars colors;
|
2022-11-19 16:14:18 +01:00
|
|
|
inherit (self) extendedLib;
|
2022-08-19 14:50:03 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
})
|
2022-03-07 16:01:52 +01:00
|
|
|
];
|
2022-06-21 01:47:36 +02:00
|
|
|
};
|
2022-03-07 16:01:52 +01:00
|
|
|
in {
|
2022-06-21 01:47:36 +02:00
|
|
|
Tsuki = nixSys "tsuki";
|
|
|
|
Eisei = nixSys "eisei";
|
|
|
|
kasei = nixSys "kasei";
|
2022-03-07 16:01:52 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|