dotfiles/nix/systems/blowhole.nix

31 lines
559 B
Nix
Raw Normal View History

inputs: {
2021-02-05 12:05:42 +01:00
system = "x86_64-linux";
username = "main";
homeDirectory = "/home/main";
configuration =
{ pkgs, ... }: {
2021-02-05 12:05:42 +01:00
home.stateVersion = "20.09";
magic_rb = {
pins = {
inherit (inputs)
nixpkgs
nixpkgs-unstable
nixpkgs-master
home-manager
nixng
fenix;
};
overlays = inputs.self.overlays;
programs = {
bash.enable = true;
};
};
imports = [ ../home-manager/modules/default.nix ];
};
2021-02-05 12:05:42 +01:00
}