Compare commits
No commits in common. "737747f8f5ce4fb1c3c0cf700390a77166f1f214" and "3505b4d7f01a47db1e3d680487dbcfde7e24be96" have entirely different histories.
737747f8f5
...
3505b4d7f0
33
flake.nix
33
flake.nix
|
@ -165,39 +165,6 @@
|
||||||
ambroisie = prev.recurseIntoAttrs (import ./pkgs { pkgs = prev; });
|
ambroisie = prev.recurseIntoAttrs (import ./pkgs { pkgs = prev; });
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
homeConfigurations =
|
|
||||||
let
|
|
||||||
system = "x86_64-linux";
|
|
||||||
pkgs = import nixpkgs {
|
|
||||||
inherit system;
|
|
||||||
overlays = (lib.attrValues self.overlays) ++ [
|
|
||||||
nur.overlay
|
|
||||||
];
|
|
||||||
};
|
|
||||||
in
|
|
||||||
{
|
|
||||||
ambroisie = home-manager.lib.homeManagerConfiguration {
|
|
||||||
inherit pkgs;
|
|
||||||
|
|
||||||
modules = [
|
|
||||||
./home
|
|
||||||
{
|
|
||||||
# The basics
|
|
||||||
home.username = "ambroisie";
|
|
||||||
home.homeDirectory = "/home/ambroisie";
|
|
||||||
# Let Home Manager install and manage itself.
|
|
||||||
programs.home-manager.enable = true;
|
|
||||||
# This is a generic linux install
|
|
||||||
targets.genericLinux.enable = true;
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
extraSpecialArgs = {
|
|
||||||
# Inject inputs to use them in global registry
|
|
||||||
inherit inputs;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
nixosConfigurations = lib.mapAttrs buildHost {
|
nixosConfigurations = lib.mapAttrs buildHost {
|
||||||
aramis = "x86_64-linux";
|
aramis = "x86_64-linux";
|
||||||
|
|
|
@ -19,7 +19,6 @@
|
||||||
./jq
|
./jq
|
||||||
./mail
|
./mail
|
||||||
./mpv
|
./mpv
|
||||||
./nix
|
|
||||||
./nix-index
|
./nix-index
|
||||||
./nm-applet
|
./nm-applet
|
||||||
./packages
|
./packages
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
# Nix related settings
|
|
||||||
{ config, inputs, lib, options, pkgs, ... }:
|
|
||||||
let
|
|
||||||
cfg = config.my.home.nix;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.my.home.nix = with lib; {
|
|
||||||
enable = my.mkDisableOption "nix configuration";
|
|
||||||
|
|
||||||
addToRegistry = my.mkDisableOption "add inputs and self to registry";
|
|
||||||
|
|
||||||
overrideNixpkgs = my.mkDisableOption "point nixpkgs to pinned system version";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable (lib.mkMerge [
|
|
||||||
{
|
|
||||||
nix = {
|
|
||||||
package = lib.mkDefault pkgs.nix;
|
|
||||||
|
|
||||||
settings = {
|
|
||||||
experimental-features = [ "nix-command" "flakes" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
(lib.mkIf cfg.addToRegistry {
|
|
||||||
nix.registry = {
|
|
||||||
# Allow me to use my custom package using `nix run self#pkg`
|
|
||||||
self.flake = inputs.self;
|
|
||||||
# Use pinned nixpkgs when using `nix run pkgs#<whatever>`
|
|
||||||
pkgs.flake = inputs.nixpkgs;
|
|
||||||
# ... And also with `nix run nixpkgs#<whatever>`
|
|
||||||
nixpkgs.flake = lib.mkIf cfg.overrideNixpkgs inputs.nixpkgs;
|
|
||||||
# Add NUR to run some packages that are only present there
|
|
||||||
nur.flake = inputs.nur;
|
|
||||||
};
|
|
||||||
})
|
|
||||||
]);
|
|
||||||
}
|
|
Loading…
Reference in a new issue