nixos/flake.nix

97 lines
3 KiB
Nix
Raw Normal View History

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-10-02 11:33:29 +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";
};
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-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-10-02 11:33:29 +04:00
agenix.url = "github:ryantm/agenix";
2023-12-26 15:02:02 +04:00
emacs-overlay = {
2024-10-02 11:33:29 +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
};
2024-10-02 11:33:29 +04:00
outputs = { self, nixpkgs, home-manager, NixOS-WSL, sops-nix, agenix
, emacs-overlay, hyprland, hyprpaper, ags, ... }@inputs:
let
inherit (self) outputs;
forAllSystems = nixpkgs.lib.genAttrs [ "x86_64-linux" ];
in rec {
# custom packages
packages = forAllSystems (system:
let pkgs = nixpkgs.legacyPackages.${system};
in import ./packages { inherit pkgs; });
# dev shell for bootstrap
devShells = forAllSystems (system:
let pkgs = nixpkgs.legacyPackages.${system};
in import ./shell.nix { inherit pkgs; });
2023-08-07 17:28:33 +04:00
2024-10-02 11:33:29 +04:00
# overlays here
overlays = import ./overlays { inherit inputs; };
2023-07-07 03:06:45 +04:00
2024-10-02 11:33:29 +04:00
# modules :D
nixosModules = import ./modules;
2023-07-07 03:06:45 +04:00
2024-10-02 11:33:29 +04:00
nixosConfigurations = {
sakotop = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs; };
modules = [
./default.nix
./hosts/sakotop/configuration.nix
sops-nix.nixosModules.sops
];
};
sakopc = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs; };
modules = [
./default.nix
./hosts/sakopc/configuration.nix
sops-nix.nixosModules.sops
];
};
#sakoserver = nixpkgs.lib.nixosSystem {
# specialArgs = {inherit inputs outputs;};
# modules = [
# ./default.nix
# ./hosts/sakoserver/configuration.nix
# ];
#};
sakowsl = nixpkgs.lib.nixosSystem {
# because theres no hardware-configuration.nix
system = "x86_64-linux";
specialArgs = { inherit inputs outputs; };
modules = [
{ nix.registry.nixpkgs.flake = nixpkgs; }
./hosts/sakowsl/configuration.nix
NixOS-WSL.nixosModules.wsl
sops-nix.nixosModules.sops
];
};
};
2023-07-05 22:32:26 +04:00
};
}