2024-02-27 03:43:43 +00:00
|
|
|
{
|
|
|
|
description = "Torjus nixos config flake";
|
|
|
|
|
|
|
|
inputs = {
|
2024-03-04 03:24:34 +00:00
|
|
|
# nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
2024-05-26 22:57:10 +00:00
|
|
|
nixpkgs-stable.url = "github:nixos/nixpkgs?ref=nixos-23.11";
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
2024-02-27 08:58:20 +00:00
|
|
|
home-manager = {
|
2024-05-23 22:04:53 +00:00
|
|
|
url = "github:nix-community/home-manager?ref=release-23.11";
|
2024-02-27 08:58:20 +00:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-03-06 19:17:04 +00:00
|
|
|
sops-nix.url = "github:Mic92/sops-nix";
|
2024-03-07 03:00:22 +00:00
|
|
|
notlistener.url = "git+https://git.t-juice.club/torjus/notlistener?ref=master";
|
2024-03-09 22:19:38 +00:00
|
|
|
ghettoptt.url = "git+https://git.t-juice.club/torjus/ghettoptt?ref=master";
|
2024-02-27 03:43:43 +00:00
|
|
|
};
|
|
|
|
|
2024-03-09 22:19:38 +00:00
|
|
|
outputs =
|
|
|
|
{ self
|
|
|
|
, nixpkgs
|
2024-05-26 22:57:10 +00:00
|
|
|
, nixpkgs-stable
|
2024-03-09 22:19:38 +00:00
|
|
|
, sops-nix
|
|
|
|
, notlistener
|
|
|
|
, ghettoptt
|
|
|
|
, ...
|
|
|
|
}@inputs:
|
2024-02-27 08:47:30 +00:00
|
|
|
let
|
2024-02-27 03:43:43 +00:00
|
|
|
system = "x86_64-linux";
|
2024-02-27 08:47:30 +00:00
|
|
|
user = "torjus";
|
2024-05-26 22:57:10 +00:00
|
|
|
overlay-stable = final: prev: {
|
|
|
|
stable = import nixpkgs-stable {
|
2024-03-04 22:59:28 +00:00
|
|
|
inherit system;
|
|
|
|
config.allowUnfree = true;
|
|
|
|
};
|
|
|
|
};
|
2024-02-27 21:48:45 +00:00
|
|
|
in
|
|
|
|
{
|
2024-03-01 08:44:34 +00:00
|
|
|
nixosConfigurations = {
|
|
|
|
prismo = nixpkgs.lib.nixosSystem {
|
2024-03-04 22:59:28 +00:00
|
|
|
inherit system;
|
2024-03-01 08:44:34 +00:00
|
|
|
specialArgs = { inherit inputs self user; };
|
|
|
|
modules = [ ./hosts/prismo ];
|
|
|
|
};
|
|
|
|
magicman = nixpkgs.lib.nixosSystem {
|
2024-03-04 22:59:28 +00:00
|
|
|
inherit system;
|
2024-03-01 08:44:34 +00:00
|
|
|
specialArgs = { inherit inputs self user; };
|
2024-04-18 18:24:29 +00:00
|
|
|
modules = [
|
|
|
|
({ config, pkgs, ... }: {
|
|
|
|
nixpkgs.overlays = [
|
2024-05-26 22:57:10 +00:00
|
|
|
overlay-stable
|
2024-04-18 18:24:29 +00:00
|
|
|
ghettoptt.overlays.default
|
|
|
|
];
|
|
|
|
})
|
|
|
|
./hosts/magicman
|
|
|
|
sops-nix.nixosModules.sops
|
|
|
|
];
|
2024-03-01 08:44:34 +00:00
|
|
|
};
|
2024-03-01 09:00:40 +00:00
|
|
|
gunter = nixpkgs.lib.nixosSystem {
|
2024-03-04 22:59:28 +00:00
|
|
|
inherit system;
|
2024-03-06 19:17:04 +00:00
|
|
|
specialArgs = { inherit inputs self user sops-nix; };
|
2024-03-04 22:59:28 +00:00
|
|
|
modules = [
|
2024-03-09 22:19:38 +00:00
|
|
|
({ config, pkgs, ... }: {
|
|
|
|
nixpkgs.overlays = [
|
2024-05-26 22:57:10 +00:00
|
|
|
overlay-stable
|
2024-03-09 22:19:38 +00:00
|
|
|
notlistener.overlays.default
|
|
|
|
ghettoptt.overlays.default
|
|
|
|
];
|
|
|
|
})
|
2024-03-04 22:59:28 +00:00
|
|
|
./hosts/gunter
|
2024-03-06 19:17:04 +00:00
|
|
|
sops-nix.nixosModules.sops
|
2024-03-04 22:59:28 +00:00
|
|
|
];
|
2024-03-01 09:00:40 +00:00
|
|
|
};
|
2024-02-27 08:47:30 +00:00
|
|
|
};
|
2024-02-27 21:20:00 +00:00
|
|
|
};
|
2024-02-27 03:43:43 +00:00
|
|
|
}
|