Go to file
2023-12-29 07:19:52 +02:00
bin fixing bingwp finally 2023-12-26 12:37:28 +02:00
home fixing bingwp finally 2023-12-26 12:37:28 +02:00
modules update 2023-12-23 15:48:20 +02:00
nixos bingwp use old img if no new 2023-12-26 03:25:40 +02:00
.gitignore moving to flake config 2023-08-07 14:35:23 +03:00
flake.lock update 2023-12-23 15:48:20 +02:00
flake.nix switch nixpkgs url 2023-11-25 07:20:58 +02:00
hardware-configuration.nix moving to flake config 2023-08-07 14:35:23 +03:00
LICENSE LICENSE 2023-12-29 07:19:52 +02:00
README.md editing readme for new name 2023-12-16 16:15:26 +02:00

My personal nixos config.

Usage

To build the base system for my craptop:

sudo nixos-rebuild switch --flake github:ivandimitrov8080/config#laptop

To build ivand home:

home-manager switch --flake github:ivandimitrov8080/config#ivand

To reuse modules:

in your flake.nix:

inputs.ivan-mods = {
  url = "github:ivandimitrov8080/config";
  inputs.nixpkgs.follows = "nixpkgs";
};
outputs = {self, nixpkgs, ivan-mods, ...}:{
...
    homeConfigurations = {
        my-user = home-manager.lib.homeManagerConfiguration {
          inherit pkgs;
          modules = with ivan-mods.modules.home; [
            programs.nvim
            programs.zsh
          ];
        };
      };
...
};