nix-dotfiles/flake.nix

226 lines
5.7 KiB
Nix
Raw Normal View History

2022-03-07 16:01:52 +01:00
{
inputs = {
nixpkgs.url = "nixpkgs/nixos-24.05";
nixpkgs-unstable.url = "nixpkgs/nixos-unstable";
2022-03-07 16:01:52 +01:00
home-manager = {
url = "github:nix-community/home-manager/release-24.05";
2022-03-07 16:01:52 +01:00
inputs.nixpkgs.follows = "nixpkgs";
};
2022-03-22 16:37:19 +01:00
dotfiles = {
2024-06-02 16:22:38 +02:00
url = "git+https://git.pvv.ntnu.no/oysteikt/dotfiles?ref=master";
2022-03-22 16:37:19 +01:00
flake = false;
};
2022-03-07 16:01:52 +01:00
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-03-07 23:08:39 +01:00
2023-01-04 14:32:11 +01:00
osuchan = {
url = "git+file:///home/h7x4/git/osuchan-line-bot";
inputs.nixpkgs.follows = "nixpkgs";
2023-01-04 14:32:11 +01:00
};
# TODO: fix website
# website = {
# url = "git+https://git.pvv.ntnu.no/oysteikt/nani.wtf?ref=main";
2022-03-22 23:05:42 +01:00
# url = "path:/home/h7x4/git/nani.wtf";
# inputs.nixpkgs.follows = "nixpkgs";
# };
2022-03-22 23:05:42 +01:00
2023-01-03 22:45:41 +01:00
maunium-stickerpicker = {
url = "github:h7x4/maunium-stickerpicker-nix/0.1.0";
inputs.nixpkgs.follows = "nixpkgs";
2023-01-03 22:45:41 +01:00
};
2023-01-16 16:06:34 +01:00
minecraft = {
url = "github:infinidoge/nix-minecraft";
inputs.nixpkgs.follows = "nixpkgs-unstable";
2023-01-16 16:06:34 +01:00
};
matrix-synapse-next = {
url = "github:dali99/nixos-matrix-modules/v0.6.0";
inputs.nixpkgs.follows = "nixpkgs";
};
vscode-server = {
url = "github:nix-community/nixos-vscode-server";
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";
};
};
outputs = inputs@{
2022-03-22 23:05:42 +01:00
self,
nixpkgs,
nixpkgs-unstable,
2022-03-22 23:05:42 +01:00
home-manager,
dotfiles,
matrix-synapse-next,
2023-01-03 22:45:41 +01:00
maunium-stickerpicker,
2023-01-16 16:06:34 +01:00
minecraft,
osuchan,
secrets,
2023-03-07 23:08:39 +01:00
sops-nix,
vscode-server,
# website
2022-03-22 23:05:42 +01:00
}: let
2022-03-07 16:01:52 +01:00
system = "x86_64-linux";
pkgs-config = {
2022-03-07 16:01:52 +01:00
inherit system;
config = {
allowUnfree = true;
android_sdk.accept_license = true;
2024-06-26 20:37:40 +02:00
segger-jlink.acceptLicense = true;
permittedInsecurePackages = [
"segger-jlink-qt4-794l"
];
2022-03-07 16:01:52 +01:00
};
overlays = let
nonrecursive-unstable-pkgs = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
};
in [
2024-06-26 20:18:28 +02:00
(self: super: {
2024-06-29 02:14:31 +02:00
inherit (nonrecursive-unstable-pkgs) atuin wstunnel;
2024-06-26 20:18:28 +02:00
})
(self: super: {
mpv-unwrapped = super.mpv-unwrapped.override {
2023-12-18 20:59:48 +01:00
ffmpeg = super.ffmpeg_6-full;
};
})
];
2022-08-18 23:15:50 +02:00
};
pkgs = import nixpkgs pkgs-config;
unstable-pkgs = import nixpkgs-unstable pkgs-config;
2022-03-07 16:01:52 +01:00
in {
extendedLib = import ./lib { stdlib = pkgs.lib; };
inherit pkgs;
packages.${system} = {
inherit (pkgs) kanidm pcloud;
};
2023-03-07 23:08:39 +01:00
devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [ sops ];
};
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 = [
./home/home.nix
./modules/machineVars.nix
2022-03-07 16:01:52 +01:00
];
machineVars = {
headless = false;
fixDisplayCommand = "echo 'not available'";
gaming = true;
development = true;
laptop = false;
};
2022-03-07 16:01:52 +01:00
};
};
};
nixosConfigurations = let
nixSys = name: extraConfig:
nixpkgs.lib.nixosSystem
({
inherit system;
inherit pkgs;
inherit (pkgs) lib;
specialArgs = {
inherit inputs;
inherit unstable-pkgs;
inherit (self) extendedLib;
secrets = secrets.outputs.settings;
} // (extraConfig.specialArgs or { });
modules = [
"${home-manager}/nixos"
./hosts/common
./hosts/${name}/configuration.nix
./modules/machineVars.nix
./modules/socketActivation.nix
secrets.outputs.nixos-config
sops-nix.nixosModules.sops
({ config, ... }:
{
home-manager = {
useGlobalPkgs = true;
extraSpecialArgs = {
inherit inputs;
inherit (self) extendedLib;
inherit (config) machineVars;
hostname = name;
secrets = secrets.outputs.settings;
};
sharedModules = [
inputs.sops-nix.homeManagerModules.sops
];
users.h7x4.imports = [
./home/home.nix
./hosts/${name}/home
];
};
})
] ++ (extraConfig.modules or [ ]);
}
//
(builtins.removeAttrs extraConfig [
"modules"
"specialArgs"
]));
2022-03-07 16:01:52 +01:00
in {
dosei = nixSys "dosei" { };
kasei = nixSys "kasei" { };
tsuki = nixSys "tsuki" {
modules = [
matrix-synapse-next.nixosModules.default
osuchan.outputs.nixosModules.default
vscode-server.nixosModules.default
maunium-stickerpicker.nixosModules.default
(args: import minecraft.outputs.nixosModules.minecraft-servers (args // {
pkgs = unstable-pkgs;
lib = unstable-pkgs.lib;
}))
];
};
2022-03-07 16:01:52 +01:00
};
};
}