Go to file
Ivan Kirilov Dimitrov 4a7b27602d
flake parts
Squashed commit of the following:

commit 054b92e5e3
Author: Ivan Kirilov Dimitrov <ivan@idimitrov.dev>
Date:   Tue Jun 18 11:53:54 2024 +0200

    enable browserpass

commit 05f5ca0f91
Author: Ivan Kirilov Dimitrov <ivan@idimitrov.dev>
Date:   Sun Jun 16 14:37:06 2024 +0200

    wifi

commit 1d42e5fd1e
Author: Ivan Kirilov Dimitrov <ivan@idimitrov.dev>
Date:   Wed Jun 12 23:19:58 2024 +0200

    making home work too

commit 472817d1da
Author: Ivan Kirilov Dimitrov <ivan@idimitrov.dev>
Date:   Tue Jun 11 19:32:58 2024 +0200

    making it work

commit 55e4c663f4
Author: Ivan Kirilov Dimitrov <ivan@idimitrov.dev>
Date:   Mon Jun 10 22:41:40 2024 +0200

    still working

commit 196683aceb
Author: Ivan Kirilov Dimitrov <ivan@idimitrov.dev>
Date:   Mon Jun 10 21:16:46 2024 +0200

    kinda working
2024-06-18 20:32:19 +02:00
bin screenshot area make slurp not color the screen 2024-04-23 21:25:32 +03:00
home flake parts 2024-06-18 20:32:19 +02:00
nixos flake parts 2024-06-18 20:32:19 +02:00
.gitignore moving to flake config 2023-08-07 14:35:23 +03:00
default.nix flake parts 2024-06-18 20:32:19 +02:00
flake.lock flake parts 2024-06-18 20:32:19 +02:00
flake.nix flake parts 2024-06-18 20:32:19 +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
          ];
        };
      };
...
};