nixos-config/flake.nix

93 lines
3.2 KiB
Nix
Raw Normal View History

2022-06-10 00:22:53 -03:00
{
description = "My system config";
inputs = {
nixpkgs.url = "nixpkgs/nixos-22.05";
2022-07-16 02:12:18 -03:00
nixpkgs-unstable.url = "nixpkgs/nixos-unstable";
2022-06-10 00:22:53 -03:00
home-manager.url = "github:nix-community/home-manager/release-22.05";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
2022-07-21 00:32:09 -03:00
nur.url = "github:nix-community/NUR";
2022-08-05 11:20:13 -03:00
2022-08-06 20:16:17 -03:00
alacritty-sixel.url = "github:microo8/alacritty-sixel";
alacritty-sixel.flake = false;
2022-08-06 20:36:14 -03:00
ranger-sixel.url = "github:remi6397/ranger/feature/sixel";
ranger-sixel.flake = false;
2022-08-01 20:15:26 -03:00
# my stuff
dhist.url = "github:lelgenio/dhist";
2022-06-10 00:22:53 -03:00
};
2022-08-07 15:12:25 -03:00
outputs = { nixpkgs, nixpkgs-unstable, home-manager, alacritty-sixel
, ranger-sixel, nur, dhist, ... }:
2022-06-10 00:22:53 -03:00
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
config = { allowUnfree = true; };
};
2022-07-16 02:12:18 -03:00
overlay-unstable = final: prev: {
unstable = nixpkgs-unstable.legacyPackages.${prev.system};
# use this variant if unfree packages are needed:
# unstable = import nixpkgs-unstable {
# inherit system;
# config.allowUnfree = true;
# };
};
2022-06-10 00:22:53 -03:00
lib = nixpkgs.lib;
2022-07-16 02:12:18 -03:00
common_modules = [
./system/configuration.nix
# nur.nixosModules.nur
2022-08-06 18:32:34 -03:00
({ config, pkgs, ... }: {
2022-08-05 11:20:13 -03:00
nixpkgs.overlays = [
2022-08-06 18:32:34 -03:00
overlay-unstable
nur.overlay
2022-08-06 20:16:17 -03:00
(_: old-pkgs: {
2022-08-01 20:15:26 -03:00
dhist = dhist.packages.${system}.dhist;
2022-08-05 11:20:13 -03:00
bmenu = import ./bmenu.nix { inherit config pkgs lib; };
2022-08-05 21:09:52 -03:00
_diffr = import ./diffr.nix { inherit config pkgs lib; };
kak-pager = import ./kak-pager.nix { inherit config pkgs lib; };
2022-08-06 11:10:31 -03:00
terminal = import ./terminal.nix { inherit config pkgs lib; };
2022-08-07 15:12:25 -03:00
alacritty = (old-pkgs.alacritty.overrideAttrs
(old-alacritty: rec {
src = alacritty-sixel;
cargoDeps = old-alacritty.cargoDeps.overrideAttrs
(old-pkgs.lib.const {
inherit src;
outputHash =
"sha256-aNatd4LC4lv0bDpVfUONdtEn9OPahVBZ9ch14pWWCnM=";
});
}));
2022-08-06 20:36:14 -03:00
ranger = (old-pkgs.ranger.overridePythonAttrs (old-ranger: rec {
src = ranger-sixel;
2022-08-07 15:12:25 -03:00
checkInputs = [ ];
2022-08-06 20:36:14 -03:00
propagatedBuildInputs = with pkgs.python3Packages;
2022-08-07 15:12:25 -03:00
old-ranger.propagatedBuildInputs ++ [ astroid pylint pytest ];
2022-08-06 20:36:14 -03:00
}));
2022-08-01 20:15:26 -03:00
})
];
2022-07-21 00:32:09 -03:00
})
2022-07-16 02:12:18 -03:00
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.lelgenio = import ./user/home.nix;
home-manager.backupFileExtension = "bkp";
2022-07-16 02:12:18 -03:00
# Optionally, use home-manager.extraSpecialArgs to pass
# arguments to home.nix
}
];
2022-06-10 00:22:53 -03:00
in {
nixosConfigurations = {
i15 = lib.nixosSystem {
inherit system;
2022-07-21 00:32:09 -03:00
modules = [ ./system/i15-hardware-configuration.nix ]
++ common_modules;
2022-07-16 02:12:18 -03:00
};
2022-07-11 21:34:04 -03:00
monolith = lib.nixosSystem {
inherit system;
2022-07-21 00:32:09 -03:00
modules = [ ./system/monolith-hardware-configuration.nix ]
++ common_modules;
2022-06-10 00:22:53 -03:00
};
};
};
2022-07-21 00:32:09 -03:00
}