2023-07-05 22:32:26 +04:00
|
|
|
# load stuff
|
|
|
|
{
|
2024-07-29 23:18:00 +04:00
|
|
|
description = "Sako's NixOS Configuration";
|
2023-07-05 22:32:26 +04:00
|
|
|
|
|
|
|
inputs = {
|
2024-08-21 18:50:21 +04:00
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; # nixpkgs unstable branch
|
|
|
|
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.05"; # nixpkgs stable branch because some things break
|
2023-08-19 14:17:35 +04:00
|
|
|
home-manager = {
|
2023-12-25 01:35:40 +04:00
|
|
|
# this manages your dotfiles for the most part
|
2024-08-09 17:55:44 +04:00
|
|
|
url = "github:nix-community/home-manager";
|
2023-08-19 14:17:35 +04:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2023-08-17 19:42:16 +04:00
|
|
|
NixOS-WSL = {
|
2023-12-25 01:35:40 +04:00
|
|
|
# this makes nixos on wsl a thing
|
2023-08-19 11:20:34 +04:00
|
|
|
url = "github:nix-community/NixOS-WSL";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2023-08-17 19:42:16 +04:00
|
|
|
};
|
2023-10-05 13:55:36 +04:00
|
|
|
sops-nix = {
|
2023-12-25 01:35:40 +04:00
|
|
|
# this manages secrets
|
2023-10-05 13:55:36 +04:00
|
|
|
url = "github:Mic92/sops-nix";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-09-26 08:37:54 +04:00
|
|
|
agenix.url = "github:ryantm/agenix";
|
2023-12-26 15:02:02 +04:00
|
|
|
emacs-overlay = {
|
2024-09-25 22:05:55 +04:00
|
|
|
url = "github:nix-community/emacs-overlay/0442d57ffa83985ec2ffaec95db9c0fe742f5182";
|
2023-12-26 15:02:02 +04:00
|
|
|
};
|
2024-09-04 21:46:54 +04:00
|
|
|
ags = {
|
|
|
|
url = "github:Aylur/ags";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-08-12 02:01:40 +04:00
|
|
|
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
|
2024-09-01 20:53:22 +04:00
|
|
|
hyprpaper.url = "github:hyprwm/hyprpaper";
|
2023-07-05 22:32:26 +04:00
|
|
|
};
|
|
|
|
|
2023-08-07 17:28:33 +04:00
|
|
|
outputs = {
|
|
|
|
self,
|
|
|
|
nixpkgs,
|
|
|
|
home-manager,
|
2023-08-17 19:42:16 +04:00
|
|
|
NixOS-WSL,
|
2023-08-23 18:34:42 +04:00
|
|
|
sops-nix,
|
2023-12-26 15:02:02 +04:00
|
|
|
emacs-overlay,
|
2024-08-11 22:26:36 +04:00
|
|
|
hyprland,
|
2024-09-01 20:57:32 +04:00
|
|
|
hyprpaper,
|
2024-09-04 21:46:54 +04:00
|
|
|
ags,
|
2024-09-26 08:37:54 +04:00
|
|
|
agenix,
|
2023-08-07 17:28:33 +04:00
|
|
|
...
|
|
|
|
} @ inputs: let
|
2023-07-07 03:06:45 +04:00
|
|
|
inherit (self) outputs;
|
2023-08-07 17:28:33 +04:00
|
|
|
forAllSystems = nixpkgs.lib.genAttrs [
|
|
|
|
"x86_64-linux"
|
|
|
|
];
|
|
|
|
in rec {
|
2023-07-07 03:06:45 +04:00
|
|
|
# custom packages
|
2023-08-07 17:28:33 +04:00
|
|
|
packages = forAllSystems (
|
|
|
|
system: let
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
in
|
|
|
|
import ./packages {inherit pkgs;}
|
2023-07-07 03:06:45 +04:00
|
|
|
);
|
|
|
|
# dev shell for bootstrap
|
2023-08-07 17:28:33 +04:00
|
|
|
devShells = forAllSystems (
|
|
|
|
system: let
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
in
|
|
|
|
import ./shell.nix {inherit pkgs;}
|
2023-07-27 21:59:50 +04:00
|
|
|
);
|
2023-08-07 17:28:33 +04:00
|
|
|
|
2023-07-07 03:06:45 +04:00
|
|
|
# overlays here
|
2023-08-07 17:28:33 +04:00
|
|
|
overlays = import ./overlays {inherit inputs;};
|
2023-07-07 03:06:45 +04:00
|
|
|
|
|
|
|
# modules :D
|
|
|
|
nixosModules = import ./modules;
|
|
|
|
|
2023-07-05 22:32:26 +04:00
|
|
|
nixosConfigurations = {
|
2023-07-06 02:02:21 +04:00
|
|
|
sakotop = nixpkgs.lib.nixosSystem {
|
2024-07-30 04:16:45 +04:00
|
|
|
specialArgs = {inherit inputs outputs;};
|
2023-07-07 03:06:45 +04:00
|
|
|
modules = [
|
2023-08-07 17:28:33 +04:00
|
|
|
./default.nix
|
2023-07-07 03:06:45 +04:00
|
|
|
./hosts/sakotop/configuration.nix
|
2023-08-31 13:30:45 +04:00
|
|
|
sops-nix.nixosModules.sops
|
2024-09-26 08:44:35 +04:00
|
|
|
agenix.nixosModues.default
|
2023-07-07 03:06:45 +04:00
|
|
|
];
|
2023-07-05 22:32:26 +04:00
|
|
|
};
|
2024-06-22 15:04:22 +04:00
|
|
|
sakopc = nixpkgs.lib.nixosSystem {
|
2024-07-30 04:16:45 +04:00
|
|
|
specialArgs = {inherit inputs outputs;};
|
2024-06-22 15:04:22 +04:00
|
|
|
modules = [
|
|
|
|
./default.nix
|
|
|
|
./hosts/sakopc/configuration.nix
|
|
|
|
];
|
|
|
|
};
|
2024-04-02 03:51:38 +04:00
|
|
|
#sakoserver = nixpkgs.lib.nixosSystem {
|
2024-07-30 04:16:45 +04:00
|
|
|
# specialArgs = {inherit inputs outputs;};
|
2024-04-02 03:51:38 +04:00
|
|
|
# modules = [
|
|
|
|
# ./default.nix
|
|
|
|
# ./hosts/sakoserver/configuration.nix
|
|
|
|
# ];
|
|
|
|
#};
|
2023-08-17 19:42:16 +04:00
|
|
|
sakowsl = nixpkgs.lib.nixosSystem {
|
2023-08-19 11:20:34 +04:00
|
|
|
# because theres no hardware-configuration.nix
|
|
|
|
system = "x86_64-linux";
|
2024-07-30 04:16:45 +04:00
|
|
|
specialArgs = {inherit inputs outputs;};
|
2023-08-19 11:20:34 +04:00
|
|
|
modules = [
|
|
|
|
{nix.registry.nixpkgs.flake = nixpkgs;}
|
|
|
|
./hosts/sakowsl/configuration.nix
|
|
|
|
NixOS-WSL.nixosModules.wsl
|
2023-08-23 18:34:42 +04:00
|
|
|
sops-nix.nixosModules.sops
|
2023-08-19 11:20:34 +04:00
|
|
|
];
|
2023-08-17 19:42:16 +04:00
|
|
|
};
|
2023-07-05 22:32:26 +04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|