nixos-config/flake.nix

88 lines
2.7 KiB
Nix
Raw Normal View History

{
2020-04-27 05:39:00 +04:00
description =
"A collection of crap, hacks and copy-paste to make my localhosts boot";
2020-06-21 13:17:20 +04:00
inputs = {
2021-01-21 22:13:53 +04:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2020-09-22 23:53:36 +04:00
# nixpkgs-mesa.url = github:nixos/nixpkgs-channels/bdac777becdbb8780c35be4f552c9d4518fe0bdb;
2021-01-21 22:13:53 +04:00
lambda-launcher.url = "github:balsoft/lambda-launcher";
2020-06-21 13:17:20 +04:00
NUR = {
2021-01-21 22:13:53 +04:00
url = "github:nix-community/NUR";
2020-06-21 13:17:20 +04:00
flake = false;
};
base16-unclaimed-schemes = {
2021-01-21 22:13:53 +04:00
url = "github:chriskempson/base16-unclaimed-schemes";
2020-06-21 13:17:20 +04:00
flake = false;
};
2021-01-21 22:13:53 +04:00
home-manager.url = "github:rycee/home-manager";
2020-06-21 13:17:20 +04:00
materia-theme = {
2021-01-21 22:13:53 +04:00
url = "github:nana-4/materia-theme";
2020-06-21 13:17:20 +04:00
flake = false;
};
nixpkgs-old = {
2021-01-21 22:13:53 +04:00
url = "github:nixos/nixpkgs/nixos-19.09";
2020-06-21 13:17:20 +04:00
flake = false;
};
weechat-scripts = {
2021-01-21 22:13:53 +04:00
url = "github:weechat/scripts";
2020-06-21 13:17:20 +04:00
flake = false;
};
simple-nixos-mailserver = {
2020-11-10 02:07:06 +04:00
url = "gitlab:simple-nixos-mailserver/nixos-mailserver";
2020-06-21 13:17:20 +04:00
flake = false;
};
nixpkgs-wayland = {
2021-01-21 22:13:53 +04:00
url = "github:colemickens/nixpkgs-wayland";
2020-06-21 13:17:20 +04:00
flake = false;
};
weechat-notify-send = {
2021-01-21 22:13:53 +04:00
url = "github:s3rvac/weechat-notify-send";
2020-06-21 13:17:20 +04:00
flake = false;
};
yt-utilities = {
type = "git";
url = "ssh://git@github.com/serokell/yt-utilities";
ref = "flake";
};
2021-01-21 22:13:53 +04:00
nixos-fhs-compat.url = "github:balsoft/nixos-fhs-compat";
simple-osd-daemons.url = "github:balsoft/simple-osd-daemons";
2020-06-21 13:17:20 +04:00
};
2020-06-21 13:17:20 +04:00
outputs = { nixpkgs, nix, self, ... }@inputs: {
2021-01-21 22:13:53 +04:00
nixosModules = import ./modules;
nixosProfiles = import ./profiles;
2020-06-21 13:17:20 +04:00
nixosConfigurations = with nixpkgs.lib;
2020-04-27 05:39:00 +04:00
let
2021-01-21 22:13:53 +04:00
hosts = builtins.attrNames (builtins.readDir ./machines);
2020-04-27 05:39:00 +04:00
mkHost = name:
2020-06-21 13:17:20 +04:00
nixosSystem {
2021-01-21 22:13:53 +04:00
system = builtins.readFile (./machines + "/${name}/system");
modules = [
(import (./machines + "/${name}"))
{
device = name;
}
];
specialArgs = { inherit inputs; };
2020-06-21 13:17:20 +04:00
};
2020-04-27 05:39:00 +04:00
in genAttrs hosts mkHost;
2020-07-03 12:59:36 +04:00
2020-06-21 13:17:20 +04:00
legacyPackages.x86_64-linux =
(builtins.head (builtins.attrValues self.nixosConfigurations)).pkgs;
# nix run github:serokell/deploy
# Because sudo requires local presence of my Yubikey, we have to manually activate the system
# sudo nix-env -p /nix/var/nix/profiles/system --set /nix/var/nix/profiles/per-user/balsoft/system;
# sudo /nix/var/nix/profiles/system/bin/switch-to-configuration switch
deploy = {
user = "balsoft";
nodes = builtins.mapAttrs (_: conf: {
hostname = conf.config.networking.hostName;
profiles.system.path = conf.config.system.build.toplevel;
}) self.nixosConfigurations;
2020-05-22 22:30:25 +04:00
};
2020-06-21 13:17:20 +04:00
};
}