Import overlays

This commit is contained in:
Dave Gallant
2021-01-17 17:17:25 -05:00
parent e2f58d0b4a
commit aaff66142a
4 changed files with 7 additions and 10 deletions

View File

@@ -2,7 +2,7 @@
[![built with nix](https://builtwithnix.org/badge.svg)](https://builtwithnix.org)
This repo stores nix to manage my machines. The initial structure was inspired from [here](https://gitlab.com/samuelgrf/nixos-config/-/tree/master/).
This repo stores nix to manage my machines. The initial structure was inspired by [samuelgrf/nixos-config](https://gitlab.com/samuelgrf/nixos-config/-/tree/master/).
## Setup

View File

@@ -19,11 +19,6 @@
./main/kernel.nix
./main/packages.nix
./main/printing.nix
# ./main/hardware.nix
# ./main/misc.nix
# ./main/networking.nix
# ./main/services.nix
# ./main/terminal.nix
({ config, lib, lib', ... }: {
config = {
@@ -38,7 +33,8 @@
nixpkgs-unstable.flake = nixpkgs-unstable;
};
# nixpkgs.overlays = [ (import ./overlays) ];
# nixpkgs.overlays = (import ./overlays);
nixpkgs.overlays = import ./overlays { inherit nixpkgs; };
home-manager = {
useGlobalPkgs = true;

View File

@@ -141,9 +141,9 @@
gnome3.gnome-tweaks
# overlays
# lpass
# rfd
# vpngate
lpass
rfd
vpngate
];
in common;

View File

@@ -5,3 +5,4 @@
(import ./lastpass.nix)
(import ./vpngate.nix)
]