2024-03-04 00:34:39 +03:00
|
|
|
{
|
2024-11-04 04:37:29 +03:00
|
|
|
inputs = {
|
2024-11-15 01:42:21 +03:00
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/release-24.11";
|
2024-11-04 04:37:29 +03:00
|
|
|
nixpkgsUnstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
nixpkgsMaster.url = "github:nixos/nixpkgs/master";
|
|
|
|
|
|
|
|
home-manager = {
|
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
|
|
|
stylix.url = "github:danth/stylix";
|
|
|
|
|
|
|
|
nixpkgsJobber.url = "github:nixos/nixpkgs/051f920625ab5aabe37c920346e3e69d7d34400e";
|
|
|
|
poetry2nixJobber.url = "github:nix-community/poetry2nix/304f8235fb0729fd48567af34fcd1b58d18f9b95";
|
|
|
|
|
|
|
|
nix-on-droid = {
|
2024-11-15 01:42:21 +03:00
|
|
|
url = "github:t184256/nix-on-droid/release-24.05";
|
|
|
|
inputs = {
|
|
|
|
home-manager.follows = "home-manager";
|
|
|
|
nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-11-04 04:37:29 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
nvimAlign = { flake = false; url = "github:echasnovski/mini.align"; };
|
|
|
|
nvimAutoclose = { flake = false; url = "github:m4xshen/autoclose.nvim"; };
|
|
|
|
nvimBufferline = { flake = false; url = "github:akinsho/bufferline.nvim"; };
|
|
|
|
nvimCloseBuffers = { flake = false; url = "github:kazhala/close-buffers.nvim"; };
|
|
|
|
nvimColorizer = { flake = false; url = "github:brenoprata10/nvim-highlight-colors"; };
|
|
|
|
nvimDevicons = { flake = false; url = "github:nvim-tree/nvim-web-devicons"; };
|
|
|
|
nvimDressing = { flake = false; url = "github:stevearc/dressing.nvim"; };
|
|
|
|
nvimGen = { flake = false; url = "github:David-Kunz/gen.nvim"; };
|
|
|
|
nvimGitsigns = { flake = false; url = "github:lewis6991/gitsigns.nvim"; };
|
|
|
|
nvimGruvboxMaterial = { flake = false; url = "github:sainnhe/gruvbox-material"; };
|
|
|
|
nvimIndentoMatic = { flake = false; url = "github:Darazaki/indent-o-matic"; };
|
|
|
|
nvimLspconfig = { flake = false; url = "github:neovim/nvim-lspconfig"; };
|
|
|
|
nvimPlenary = { flake = false; url = "github:nvim-lua/plenary.nvim"; };
|
|
|
|
nvimTelescope = { flake = false; url = "github:nvim-telescope/telescope.nvim"; };
|
|
|
|
nvimTodo = { flake = false; url = "github:folke/todo-comments.nvim"; };
|
|
|
|
nvimTree = { flake = false; url = "github:nvim-tree/nvim-tree.lua"; };
|
|
|
|
nvimTreesitter = { flake = false; url = "github:nvim-treesitter/nvim-treesitter"; };
|
|
|
|
nvimTrouble = { flake = false; url = "github:folke/trouble.nvim"; };
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = {
|
|
|
|
home-manager,
|
|
|
|
nix-on-droid,
|
|
|
|
nixpkgs,
|
|
|
|
nixpkgsJobber,
|
|
|
|
nixpkgsMaster,
|
|
|
|
nixpkgsUnstable,
|
|
|
|
poetry2nixJobber,
|
|
|
|
self,
|
|
|
|
stylix,
|
|
|
|
...
|
|
|
|
} @inputs: {
|
|
|
|
const = {
|
2024-11-15 01:42:21 +03:00
|
|
|
droidStateVersion = "24.05";
|
|
|
|
stateVersion = "24.11";
|
2024-11-04 04:37:29 +03:00
|
|
|
timeZone = "Europe/Moscow";
|
|
|
|
url = "https://git.voronind.com/voronind/nix.git";
|
|
|
|
};
|
|
|
|
|
|
|
|
__findFile = _: p: ./${p};
|
|
|
|
|
|
|
|
findFiles = path: map (f: "${path}/${f}") (
|
|
|
|
builtins.filter (i: builtins.readFileType "${path}/${i}" == "regular") (
|
|
|
|
builtins.attrNames (builtins.readDir path)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
devShells = let
|
|
|
|
lib = nixpkgs.lib;
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
system = "x86_64-linux";
|
|
|
|
in {
|
|
|
|
${system}.default = pkgs.mkShell {
|
|
|
|
nativeBuildInputs = with pkgs; [
|
|
|
|
nixd
|
|
|
|
];
|
|
|
|
# buildInputs = with pkgs; [ ];
|
|
|
|
|
|
|
|
# LD_LIBRARY_PATH = "${lib.makeLibraryPath buildInputs}";
|
|
|
|
# SOURCE_DATE_EPOCH = "${toString self.lastModified}";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
nixosConfigurations = let
|
|
|
|
mkHost = { system, hostname }: nixpkgs.lib.nixosSystem {
|
|
|
|
inherit system;
|
|
|
|
modules = [
|
|
|
|
# Make a device hostname match the one from this config.
|
|
|
|
{ networking.hostName = hostname; }
|
|
|
|
|
|
|
|
# Specify current release version.
|
|
|
|
{ system.stateVersion = self.const.stateVersion; }
|
|
|
|
|
|
|
|
# Add Home Manager module.
|
|
|
|
home-manager.nixosModules.home-manager
|
|
|
|
|
|
|
|
# Add Stylix module.
|
|
|
|
stylix.nixosModules.stylix
|
|
|
|
|
|
|
|
# HM config.
|
|
|
|
./home/NixOs.nix
|
|
|
|
]
|
|
|
|
++ (self.findFiles ./container)
|
|
|
|
++ (self.findFiles ./host/${system}/${hostname})
|
|
|
|
++ (self.findFiles ./module)
|
|
|
|
++ (self.findFiles ./overlay)
|
|
|
|
++ (self.findFiles ./system)
|
|
|
|
;
|
|
|
|
specialArgs = let
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system}.pkgs;
|
|
|
|
lib = nixpkgs.lib;
|
|
|
|
config = self.nixosConfigurations.${hostname}.config;
|
|
|
|
util = import ./lib/Util.nix { inherit lib; };
|
|
|
|
in {
|
|
|
|
inherit (self) const __findFile;
|
|
|
|
inherit inputs self poetry2nixJobber util;
|
|
|
|
container = import ./lib/Container.nix { inherit lib pkgs config util; inherit (self) const; };
|
|
|
|
pkgsJobber = nixpkgsJobber.legacyPackages.${system}.pkgs;
|
|
|
|
pkgsMaster = nixpkgsMaster.legacyPackages.${system}.pkgs;
|
|
|
|
pkgsUnstable = nixpkgsUnstable.legacyPackages.${system}.pkgs;
|
|
|
|
secret = import ./secret { };
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
mkSystem = system: hostname: { "${hostname}" = mkHost { inherit system hostname; }; };
|
|
|
|
in nixpkgs.lib.foldl' (acc: h: acc // h) { } (
|
|
|
|
map (system: nixpkgs.lib.foldl' (acc: h: acc // h) { } (
|
|
|
|
map (host: mkSystem system host) (builtins.attrNames (builtins.readDir ./host/${system}))
|
|
|
|
)) (builtins.attrNames (builtins.readDir ./host))
|
|
|
|
);
|
|
|
|
|
|
|
|
nixOnDroidConfigurations.default = let
|
|
|
|
config = self.nixOnDroidConfigurations.default.config;
|
|
|
|
lib = nixpkgs.lib;
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system}.pkgs;
|
|
|
|
pkgsMaster = nixpkgsMaster.legacyPackages.${system}.pkgs;
|
|
|
|
pkgsUnstable = nixpkgsUnstable.legacyPackages.${system}.pkgs;
|
|
|
|
system = "aarch64-linux";
|
|
|
|
in nix-on-droid.lib.nixOnDroidConfiguration {
|
2024-11-15 02:33:00 +03:00
|
|
|
inherit pkgs;
|
2024-11-04 04:37:29 +03:00
|
|
|
modules = [
|
|
|
|
(import ./module/Style.nix { inherit (config.home-manager) config; inherit (self) __findFile; inherit lib pkgs; })
|
2024-11-15 02:33:00 +03:00
|
|
|
{ home.android.enable = true; }
|
|
|
|
{ home-manager.config.stylix.autoEnable = lib.mkForce false; }
|
2024-11-04 04:37:29 +03:00
|
|
|
./home/Android.nix
|
|
|
|
./module/Wallpaper.nix
|
|
|
|
];
|
|
|
|
extraSpecialArgs = {
|
2024-11-15 01:42:21 +03:00
|
|
|
inherit inputs self pkgsMaster pkgsUnstable;
|
2024-11-04 04:37:29 +03:00
|
|
|
inherit (self) const __findFile;
|
|
|
|
secret = import ./secret { };
|
|
|
|
util = import ./lib/Util.nix { inherit lib; };
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2024-03-04 00:34:39 +03:00
|
|
|
}
|