refactor(nixos): remove unused overlay
This commit is contained in:
parent
000bb2fd5e
commit
c076c756e6
3 changed files with 6 additions and 10 deletions
system/nixos/nixedo
|
@ -5,8 +5,6 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
let
|
||||
nixpkgs = import ../../shared/nixpkgs.nix { };
|
||||
|
||||
configure-gtk = pkgs.writeTextFile {
|
||||
name = "configure-gtk";
|
||||
destination = "/bin/configure-gtk";
|
||||
|
@ -24,13 +22,17 @@ let
|
|||
};
|
||||
in
|
||||
{
|
||||
nixpkgs = nixpkgs;
|
||||
|
||||
imports = [
|
||||
# Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
nixpkgs = {
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
};
|
||||
};
|
||||
|
||||
# Bootloader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue