nixos-config/flake.nix

177 lines
4.2 KiB
Nix
Raw Normal View History

2021-02-06 03:09:11 +01:00
{
description = "Nixos configuration with flakes";
inputs = {
2021-04-19 12:49:30 +02:00
nixpkgs = {
type = "github";
owner = "NixOS";
repo = "nixpkgs";
2023-11-30 03:46:40 +01:00
ref = "nixos-23.11";
2021-04-19 12:49:30 +02:00
};
nixpkgs-unstable-small = {
2021-05-27 20:16:14 +02:00
type = "github";
owner = "NixOS";
repo = "nixpkgs";
ref = "nixos-unstable-small";
};
2022-01-17 21:56:41 +01:00
agenix = {
type = "github";
owner = "ryantm";
repo = "agenix";
};
2021-04-19 13:42:29 +02:00
home-manager = {
type = "github";
owner = "nix-community";
repo = "home-manager";
2023-11-30 03:46:40 +01:00
ref = "release-23.11";
inputs.nixpkgs.follows = "nixpkgs";
2021-04-19 13:42:29 +02:00
};
2021-07-14 19:40:35 +02:00
flake-utils = {
type = "github";
owner = "numtide";
repo = "flake-utils";
ref = "master";
};
nixos-hardware = {
type = "github";
owner = "NixOS";
repo = "nixos-hardware";
ref = "master";
};
2021-02-06 03:09:11 +01:00
};
2022-04-10 11:54:58 +02:00
outputs = {
self,
nixpkgs,
home-manager,
agenix,
...
} @ inputs:
{
nixosModules = {
home = {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.alarsyo = import ./home;
home-manager.verbose = true;
};
nix-path = {
nix.nixPath = [
"nixpkgs=${inputs.nixpkgs}"
];
};
2021-08-25 21:39:05 +02:00
};
2021-07-14 18:05:36 +02:00
2022-04-10 11:54:58 +02:00
overlays = import ./overlays;
2022-04-10 11:54:58 +02:00
nixosConfigurations = let
2021-07-14 18:05:36 +02:00
system = "x86_64-linux";
2022-04-10 11:54:58 +02:00
shared_overlays =
[
(self: super: {
packages = import ./pkgs {pkgs = super;};
# packages accessible through pkgs.unstable.package
unstable = import inputs.nixpkgs-unstable-small {
inherit system;
config.allowUnfree = true;
};
})
2023-03-11 13:23:51 +01:00
agenix.overlays.default
2022-04-10 11:54:58 +02:00
]
++ builtins.attrValues self.overlays;
sharedModules =
[
2023-03-11 13:21:56 +01:00
agenix.nixosModules.default
home-manager.nixosModules.default
{
nixpkgs = {
2023-11-15 11:42:09 +01:00
overlays = shared_overlays;
config.permittedInsecurePackages = [
"zotero-6.0.26"
];
};
}
2022-04-10 11:54:58 +02:00
]
++ (nixpkgs.lib.attrValues self.nixosModules);
2021-07-14 18:06:52 +02:00
in {
poseidon = nixpkgs.lib.nixosSystem rec {
inherit system;
2022-04-10 11:54:58 +02:00
modules =
[
./poseidon.nix
]
++ sharedModules;
2021-07-14 18:06:52 +02:00
};
2022-06-10 16:56:15 +02:00
hades = nixpkgs.lib.nixosSystem rec {
inherit system;
modules =
[
./hades.nix
]
++ sharedModules;
};
2021-07-14 18:06:52 +02:00
boreal = nixpkgs.lib.nixosSystem rec {
inherit system;
2022-04-10 11:54:58 +02:00
modules =
[
./boreal.nix
{
nixpkgs.overlays = [
# uncomment this to build everything from scratch, fun but takes a
# while
#
# (self: super: {
# stdenv = super.impureUseNativeOptimizations super.stdenv;
# })
];
}
]
++ sharedModules;
2021-07-14 18:06:52 +02:00
};
2021-07-14 18:05:36 +02:00
2021-07-23 18:47:53 +02:00
zephyrus = nixpkgs.lib.nixosSystem rec {
inherit system;
2022-04-10 11:54:58 +02:00
modules =
[
./zephyrus.nix
inputs.nixos-hardware.nixosModules.common-cpu-intel
inputs.nixos-hardware.nixosModules.common-pc-laptop
inputs.nixos-hardware.nixosModules.common-pc-ssd
]
++ sharedModules;
2021-07-23 18:47:53 +02:00
};
2023-09-23 13:35:35 +02:00
hephaestus = nixpkgs.lib.nixosSystem rec {
inherit system;
modules =
[
./hephaestus.nix
inputs.nixos-hardware.nixosModules.common-cpu-amd
inputs.nixos-hardware.nixosModules.common-gpu-amd
inputs.nixos-hardware.nixosModules.common-pc-laptop
inputs.nixos-hardware.nixosModules.common-pc-ssd
]
++ sharedModules;
};
2021-07-14 18:05:36 +02:00
};
2022-04-10 11:54:58 +02:00
}
// inputs.flake-utils.lib.eachDefaultSystem (system: {
packages =
inputs.flake-utils.lib.flattenTree
(import ./pkgs {
pkgs = import nixpkgs {inherit system;};
});
2022-04-10 11:54:58 +02:00
});
2021-02-06 03:09:11 +01:00
}