Go to file
2024-07-07 13:39:48 +02:00
home fix catppuccin cursors 2024-07-07 13:39:48 +02:00
nixos cleanup 2024-07-07 10:42:36 +02:00
packages fix catppuccin cursors 2024-07-07 13:39:48 +02:00
.gitignore vm changes 2024-07-04 08:38:33 +02:00
default.nix fix catppuccin cursors 2024-07-07 13:39:48 +02:00
flake.lock fixing 2024-07-05 18:19:34 +02:00
flake.nix remove catppuccin 2024-07-05 18:13:53 +02:00
LICENSE LICENSE 2023-12-29 07:19:52 +02:00
Makefile nonya business 2024-07-06 22:58:14 +02:00
README.md fix readme 2024-04-11 13:13:49 +03:00

My personal nixos config.

Usage

To build the base system for my craptop:

sudo nixos-rebuild switch --flake github:ivandimitrov8080/configuration.nix#laptop

To build ivand home:

home-manager switch --flake github:ivandimitrov8080/configuration.nix#ivand

To reuse modules:

in your flake.nix:

inputs.ivan-mods = {
  url = "github:ivandimitrov8080/configuration.nix";
  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
          ];
        };
      };
...
};