Go to file
2024-06-18 11:53:54 +02:00
bin screenshot area make slurp not color the screen 2024-04-23 21:25:32 +03:00
home enable browserpass 2024-06-18 11:53:54 +02:00
nixos wifi 2024-06-16 14:37:06 +02:00
.gitignore moving to flake config 2023-08-07 14:35:23 +03:00
default.nix making home work too 2024-06-12 23:19:58 +02:00
flake.lock kinda working 2024-06-10 21:16:46 +02:00
flake.nix still working 2024-06-10 22:41:40 +02:00
LICENSE LICENSE 2023-12-29 07:19:52 +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
          ];
        };
      };
...
};