2021-11-21 14:33:20 +01:00
|
|
|
{
|
2022-12-28 13:27:18 +01:00
|
|
|
description = "Satellite";
|
2021-11-21 14:52:49 +01:00
|
|
|
|
2023-05-28 02:00:10 +02:00
|
|
|
# {{{ Inputs
|
2021-11-21 14:52:49 +01:00
|
|
|
inputs = {
|
2022-12-28 13:27:18 +01:00
|
|
|
# Nixpkgs
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11";
|
2021-11-21 14:52:49 +01:00
|
|
|
|
2023-03-30 02:54:57 +02:00
|
|
|
# Nixpkgs-unstable
|
|
|
|
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
|
2023-03-07 15:19:18 +01:00
|
|
|
# NUR
|
|
|
|
nur.url = "github:nix-community/NUR";
|
|
|
|
|
|
|
|
# Firefox addons
|
|
|
|
firefox-addons.url = "git+https://gitlab.com/rycee/nur-expressions?dir=pkgs/firefox-addons";
|
|
|
|
firefox-addons.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
2022-12-28 13:27:18 +01:00
|
|
|
# Home manager
|
|
|
|
home-manager.url = "github:nix-community/home-manager";
|
|
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
2023-01-10 02:38:06 +01:00
|
|
|
|
|
|
|
# Agenix
|
|
|
|
agenix.url = "github:ryantm/agenix";
|
|
|
|
agenix.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
2023-01-11 10:19:49 +01:00
|
|
|
# Homeage
|
|
|
|
homeage.url = "github:jordanisaacs/homeage";
|
|
|
|
homeage.inputs.nixpkgs.follows = "nixpkgs";
|
2023-01-10 20:39:33 +01:00
|
|
|
|
2023-03-12 23:34:42 +01:00
|
|
|
# Grub2 themes
|
|
|
|
grub2-themes.url = "github:vinceliuice/grub2-themes";
|
|
|
|
grub2-themes.inputs.nixpkgs.follows = "nixpkgs";
|
2023-03-12 05:24:25 +01:00
|
|
|
|
|
|
|
# Stylix
|
|
|
|
stylix.url = "github:danth/stylix";
|
2023-01-10 02:38:06 +01:00
|
|
|
|
|
|
|
# Catpuccin base16 color schemes
|
2023-05-24 03:17:09 +02:00
|
|
|
catppuccin-base16.url = "github:catppuccin/base16";
|
2023-01-10 02:38:06 +01:00
|
|
|
catppuccin-base16.flake = false;
|
|
|
|
|
2023-01-22 01:22:38 +01:00
|
|
|
# Rosepine base16 color schemes
|
2023-05-24 03:17:09 +02:00
|
|
|
rosepine-base16.url = "github:edunfelt/base16-rose-pine-scheme";
|
2023-01-22 01:22:38 +01:00
|
|
|
rosepine-base16.flake = false;
|
|
|
|
|
2023-05-18 01:56:19 +02:00
|
|
|
# Impermanence
|
2023-01-10 02:38:06 +01:00
|
|
|
impermanence.url = "github:nix-community/impermanence";
|
|
|
|
|
2023-02-19 22:47:42 +01:00
|
|
|
# Slambda
|
2023-02-19 23:52:14 +01:00
|
|
|
slambda.url = "github:Mateiadrielrafael/slambda";
|
2023-02-19 22:47:42 +01:00
|
|
|
slambda.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
2023-01-10 02:38:06 +01:00
|
|
|
# Neovim nightly
|
|
|
|
neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
|
|
|
|
neovim-nightly-overlay.inputs.nixpkgs.follows = "nixpkgs";
|
2023-05-24 03:17:09 +02:00
|
|
|
|
|
|
|
# Hyprland (available in nix unstable only atm)
|
|
|
|
hyprland.url = "github:hyprwm/Hyprland";
|
|
|
|
hyprland.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
|
|
|
|
|
|
|
# Hyprland (available in nix unstable only atm)
|
|
|
|
hyprland-contrib.url = "github:hyprwm/contrib";
|
|
|
|
hyprland-contrib.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
2022-12-28 13:27:18 +01:00
|
|
|
};
|
2023-05-28 02:00:10 +02:00
|
|
|
# }}}
|
2022-04-04 01:10:26 +02:00
|
|
|
|
2022-12-28 13:27:18 +01:00
|
|
|
outputs = { self, nixpkgs, home-manager, ... }@inputs:
|
|
|
|
let
|
2023-05-28 02:00:10 +02:00
|
|
|
# {{{ Common helpers
|
2022-12-28 13:27:18 +01:00
|
|
|
inherit (self) outputs;
|
|
|
|
forAllSystems = nixpkgs.lib.genAttrs [
|
|
|
|
"aarch64-linux"
|
|
|
|
"i686-linux"
|
|
|
|
"x86_64-linux"
|
|
|
|
"aarch64-darwin"
|
|
|
|
"x86_64-darwin"
|
|
|
|
];
|
2023-01-10 02:38:06 +01:00
|
|
|
|
2023-04-19 22:31:43 +02:00
|
|
|
specialArgs = system: {
|
2023-01-10 02:38:06 +01:00
|
|
|
inherit inputs outputs;
|
2023-05-28 02:00:10 +02:00
|
|
|
# This is used so often it makes sense to have it as it's own thing
|
2023-04-19 22:31:43 +02:00
|
|
|
upkgs = inputs.nixpkgs-unstable.legacyPackages.${system};
|
2023-01-10 02:38:06 +01:00
|
|
|
};
|
2023-05-28 02:00:10 +02:00
|
|
|
# }}}
|
2022-12-28 13:27:18 +01:00
|
|
|
in
|
2023-04-19 22:31:43 +02:00
|
|
|
{
|
2023-05-28 02:00:10 +02:00
|
|
|
# {{{ Packages
|
2022-12-28 13:27:18 +01:00
|
|
|
# Acessible through 'nix build', 'nix shell', etc
|
|
|
|
packages = forAllSystems (system:
|
|
|
|
let pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
in import ./pkgs { inherit pkgs; }
|
|
|
|
);
|
2023-05-28 02:00:10 +02:00
|
|
|
# }}}
|
|
|
|
# {{{ Bootstrapping and other pinned devshells
|
2022-12-28 13:27:18 +01:00
|
|
|
# Acessible through 'nix develop'
|
2023-04-14 17:12:35 +02:00
|
|
|
devShells = forAllSystems
|
|
|
|
(system:
|
|
|
|
let
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
default = import ./shell.nix { inherit pkgs; };
|
2023-04-19 22:31:43 +02:00
|
|
|
args = { inherit pkgs; } // specialArgs system;
|
|
|
|
devshells = import ./devshells args;
|
2023-04-14 17:12:35 +02:00
|
|
|
in
|
|
|
|
devshells // { inherit default; });
|
2023-05-28 02:00:10 +02:00
|
|
|
# }}}
|
|
|
|
# {{{ Overlays and modules
|
2022-12-28 13:27:18 +01:00
|
|
|
# Custom packages and modifications, exported as overlays
|
|
|
|
overlays = import ./overlays;
|
2022-03-09 20:36:48 +01:00
|
|
|
|
2022-12-28 13:27:18 +01:00
|
|
|
# Reusable nixos modules
|
2023-04-01 21:29:47 +02:00
|
|
|
nixosModules = import ./modules/nixos // import ./modules/common;
|
2021-11-21 14:52:49 +01:00
|
|
|
|
2022-12-28 13:27:18 +01:00
|
|
|
# Reusable home-manager modules
|
2023-04-01 21:29:47 +02:00
|
|
|
homeManagerModules = import ./modules/home-manager // import ./modules/common;
|
2023-05-28 02:00:10 +02:00
|
|
|
# }}}
|
|
|
|
# {{{ Nixos
|
2022-12-28 13:27:18 +01:00
|
|
|
# NixOS configuration entrypoint
|
|
|
|
# Available through 'nixos-rebuild --flake .#...
|
2023-05-28 02:00:10 +02:00
|
|
|
nixosConfigurations =
|
|
|
|
let
|
2023-05-28 05:24:36 +02:00
|
|
|
nixos = { system, hostname, user }: nixpkgs.lib.nixosSystem {
|
2023-04-19 22:31:43 +02:00
|
|
|
specialArgs = specialArgs system;
|
|
|
|
|
|
|
|
modules = [
|
|
|
|
home-manager.nixosModules.home-manager
|
|
|
|
{
|
2023-05-28 05:24:36 +02:00
|
|
|
home-manager.users.${user} = import ./home/${hostname}.nix;
|
2023-04-19 22:31:43 +02:00
|
|
|
home-manager.extraSpecialArgs = specialArgs system;
|
|
|
|
home-manager.useUserPackages = true;
|
|
|
|
stylix.homeManagerIntegration.followSystem = false;
|
|
|
|
stylix.homeManagerIntegration.autoImport = false;
|
|
|
|
}
|
|
|
|
|
2023-05-28 02:00:10 +02:00
|
|
|
./hosts/nixos/${hostname}
|
2023-04-19 22:31:43 +02:00
|
|
|
];
|
|
|
|
};
|
2023-05-28 02:00:10 +02:00
|
|
|
in
|
|
|
|
{
|
|
|
|
tethys = nixos {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
hostname = "tethys";
|
2023-05-28 05:24:36 +02:00
|
|
|
user = "adrielus";
|
2023-05-28 02:00:10 +02:00
|
|
|
};
|
2023-05-28 05:24:36 +02:00
|
|
|
|
2023-05-28 02:00:10 +02:00
|
|
|
euporie = nixos {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
hostname = "euporie";
|
2023-05-28 05:24:36 +02:00
|
|
|
user = "guest";
|
2023-05-28 02:00:10 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
# }}}
|
|
|
|
# {{{ Home manager
|
2022-12-28 13:27:18 +01:00
|
|
|
# Standalone home-manager configuration entrypoint
|
|
|
|
# Available through 'home-manager --flake .#...
|
2023-05-28 02:00:10 +02:00
|
|
|
homeConfigurations =
|
|
|
|
let
|
|
|
|
mkHomeConfig = { system, hostname }:
|
|
|
|
home-manager.lib.homeManagerConfiguration {
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
extraSpecialArgs = specialArgs system;
|
|
|
|
modules = [
|
|
|
|
./home/${hostname}.nix
|
|
|
|
];
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
"adrielus@tethys" = mkHomeConfig {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
hostname = "tethys";
|
2023-04-19 22:31:43 +02:00
|
|
|
};
|
2023-05-28 02:00:10 +02:00
|
|
|
"guest@euporie" = mkHomeConfig {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
hostname = "euporie";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
# }}}
|
2021-11-21 14:33:20 +01:00
|
|
|
};
|
2023-01-12 20:49:08 +01:00
|
|
|
|
|
|
|
# {{{ Caching and whatnot
|
|
|
|
nixConfig = {
|
|
|
|
extra-substituters = [
|
|
|
|
"https://nix-community.cachix.org" # I think I need this for neovim-nightly?
|
|
|
|
];
|
|
|
|
|
|
|
|
extra-trusted-public-keys = [
|
|
|
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
|
|
|
];
|
|
|
|
};
|
|
|
|
# }}}
|
2021-11-21 14:33:20 +01:00
|
|
|
}
|