2023-11-05 11:40:44 +01:00
|
|
|
{
|
2024-07-15 13:44:54 +02:00
|
|
|
description = "liv's NixOS configuration";
|
2023-11-05 17:56:55 +01:00
|
|
|
|
2023-11-05 11:40:44 +01:00
|
|
|
inputs = {
|
|
|
|
|
alejandra.url = "github:kamadorueda/alejandra/3.0.0";
|
2025-07-27 21:09:16 +02:00
|
|
|
home-manager.url = "github:nix-community/home-manager";
|
|
|
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
|
|
|
|
|
hyprland.inputs.nixpkgs.follows = "nixpkgs";
|
2024-10-17 11:12:37 +02:00
|
|
|
hypr-contrib.url = "github:hyprwm/contrib";
|
|
|
|
|
hyprpicker.url = "github:hyprwm/hyprpicker";
|
2024-12-13 16:32:51 +01:00
|
|
|
hyprsunset.url = "github:hyprwm/hyprsunset";
|
2024-11-27 11:23:41 +01:00
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
|
nur.url = "github:nix-community/NUR";
|
|
|
|
|
nixos-hardware.url = "github:nixos/nixos-hardware";
|
|
|
|
|
nixvim.url = "github:ahwxorg/nixvim-config";
|
2025-07-27 21:09:16 +02:00
|
|
|
sops-nix.url = "github:Mic92/sops-nix";
|
2025-07-30 16:33:15 +02:00
|
|
|
disko.url = "github:nix-community/disko/latest";
|
2025-10-23 00:16:21 +02:00
|
|
|
spicetify-nix.url = "github:Gerg-L/spicetify-nix";
|
2023-11-05 11:40:44 +01:00
|
|
|
};
|
|
|
|
|
|
2025-05-16 01:35:44 +02:00
|
|
|
outputs =
|
|
|
|
|
{
|
|
|
|
|
self,
|
|
|
|
|
nixpkgs,
|
2025-07-27 21:09:16 +02:00
|
|
|
sops-nix,
|
2025-07-30 16:33:15 +02:00
|
|
|
disko,
|
2025-05-16 01:35:44 +02:00
|
|
|
...
|
|
|
|
|
}@inputs:
|
|
|
|
|
let
|
|
|
|
|
overlays = import ./overlays/default.nix;
|
|
|
|
|
username = "liv";
|
|
|
|
|
system = "x86_64-linux";
|
|
|
|
|
pkgs = import nixpkgs {
|
2024-07-15 07:44:16 +02:00
|
|
|
inherit system;
|
2025-03-20 14:32:30 +01:00
|
|
|
};
|
2025-05-16 01:35:44 +02:00
|
|
|
lib = nixpkgs.lib;
|
|
|
|
|
in
|
|
|
|
|
{
|
|
|
|
|
overlays.default = overlays.addition;
|
|
|
|
|
nixosConfigurations = {
|
|
|
|
|
sakura = nixpkgs.lib.nixosSystem {
|
|
|
|
|
inherit system;
|
|
|
|
|
modules = [
|
|
|
|
|
(import ./hosts/sakura)
|
|
|
|
|
];
|
|
|
|
|
specialArgs = {
|
|
|
|
|
host = "sakura";
|
|
|
|
|
inherit self inputs username;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
yoshino = nixpkgs.lib.nixosSystem {
|
|
|
|
|
inherit system;
|
|
|
|
|
modules = [
|
|
|
|
|
(import ./hosts/yoshino)
|
|
|
|
|
];
|
|
|
|
|
specialArgs = {
|
|
|
|
|
host = "yoshino";
|
|
|
|
|
inherit self inputs username;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
ichiyo = nixpkgs.lib.nixosSystem {
|
|
|
|
|
inherit system;
|
|
|
|
|
modules = [
|
|
|
|
|
(import ./hosts/ichiyo)
|
|
|
|
|
];
|
|
|
|
|
specialArgs = {
|
|
|
|
|
host = "ichiyo";
|
|
|
|
|
inherit self inputs username;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
violet = nixpkgs.lib.nixosSystem {
|
|
|
|
|
inherit system;
|
|
|
|
|
modules = [
|
|
|
|
|
(import ./hosts/violet)
|
|
|
|
|
];
|
|
|
|
|
specialArgs = {
|
|
|
|
|
host = "violet";
|
|
|
|
|
inherit self inputs username;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
dandelion = nixpkgs.lib.nixosSystem {
|
|
|
|
|
inherit system;
|
|
|
|
|
modules = [
|
|
|
|
|
(import ./hosts/dandelion)
|
|
|
|
|
];
|
|
|
|
|
specialArgs = {
|
|
|
|
|
host = "dandelion";
|
|
|
|
|
inherit self inputs username;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
lily = nixpkgs.lib.nixosSystem {
|
|
|
|
|
inherit system;
|
|
|
|
|
modules = [
|
|
|
|
|
(import ./hosts/lily)
|
|
|
|
|
];
|
|
|
|
|
specialArgs = {
|
|
|
|
|
host = "lily";
|
|
|
|
|
inherit self inputs username;
|
|
|
|
|
};
|
|
|
|
|
};
|
2025-07-26 23:35:29 +02:00
|
|
|
zinnia = nixpkgs.lib.nixosSystem {
|
|
|
|
|
inherit system;
|
|
|
|
|
modules = [
|
|
|
|
|
(import ./hosts/zinnia)
|
|
|
|
|
];
|
|
|
|
|
specialArgs = {
|
|
|
|
|
host = "zinnia";
|
|
|
|
|
inherit self inputs username;
|
|
|
|
|
};
|
|
|
|
|
};
|
2025-07-28 16:04:11 +02:00
|
|
|
posy = nixpkgs.lib.nixosSystem {
|
|
|
|
|
system = "aarch64-linux";
|
|
|
|
|
modules = [
|
|
|
|
|
(import ./hosts/posy)
|
|
|
|
|
];
|
|
|
|
|
specialArgs = {
|
|
|
|
|
host = "posy";
|
|
|
|
|
inherit self inputs username;
|
|
|
|
|
};
|
|
|
|
|
};
|
2025-07-30 16:33:15 +02:00
|
|
|
hazel = nixpkgs.lib.nixosSystem {
|
|
|
|
|
inherit system;
|
|
|
|
|
modules = [
|
|
|
|
|
(import ./hosts/hazel)
|
|
|
|
|
];
|
|
|
|
|
specialArgs = {
|
|
|
|
|
host = "hazel";
|
|
|
|
|
inherit self inputs username;
|
|
|
|
|
};
|
|
|
|
|
};
|
2025-08-02 01:17:19 +02:00
|
|
|
daisy = nixpkgs.lib.nixosSystem {
|
|
|
|
|
inherit system;
|
|
|
|
|
modules = [
|
|
|
|
|
(import ./hosts/daisy)
|
|
|
|
|
];
|
|
|
|
|
specialArgs = {
|
|
|
|
|
host = "daisy";
|
|
|
|
|
inherit self inputs username;
|
|
|
|
|
};
|
|
|
|
|
};
|
2025-09-05 18:44:50 +02:00
|
|
|
iris = nixpkgs.lib.nixosSystem {
|
|
|
|
|
inherit system;
|
|
|
|
|
modules = [
|
|
|
|
|
(import ./hosts/iris)
|
|
|
|
|
];
|
|
|
|
|
specialArgs = {
|
|
|
|
|
host = "iris";
|
|
|
|
|
inherit self inputs username;
|
|
|
|
|
};
|
|
|
|
|
};
|
2025-10-20 12:14:46 +02:00
|
|
|
sunflower = nixpkgs.lib.nixosSystem {
|
|
|
|
|
inherit system;
|
|
|
|
|
modules = [
|
|
|
|
|
(import ./hosts/sunflower)
|
|
|
|
|
];
|
|
|
|
|
specialArgs = {
|
|
|
|
|
host = "sunflower";
|
|
|
|
|
inherit self inputs username;
|
|
|
|
|
};
|
|
|
|
|
};
|
2025-10-26 01:05:28 +02:00
|
|
|
imilia = nixpkgs.lib.nixosSystem {
|
|
|
|
|
inherit system;
|
|
|
|
|
modules = [
|
|
|
|
|
(import ./hosts/imilia)
|
|
|
|
|
];
|
|
|
|
|
specialArgs = {
|
|
|
|
|
host = "imilia";
|
|
|
|
|
inherit self inputs username;
|
|
|
|
|
};
|
|
|
|
|
};
|
2024-05-19 18:28:51 +02:00
|
|
|
};
|
2023-11-05 11:40:44 +01:00
|
|
|
};
|
|
|
|
|
}
|