mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
Trying to fix nur
This commit is contained in:
parent
8abda55ac9
commit
aba3c61906
1 changed files with 12 additions and 4 deletions
16
flake.nix
16
flake.nix
|
|
@ -2,19 +2,28 @@
|
|||
|
||||
inputs =
|
||||
{
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
nixpkgs = {
|
||||
url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
overlays = [
|
||||
(self: super: {
|
||||
nur = import (builtins.fetchTarball {
|
||||
url = "https://github.com/nix-community/NUR/archive/3a6a6f4da737da41e27922ce2cfacf68a109ebce.tar.gz";
|
||||
sha256 = "0g0vxzwm24pvfwhy8f320x030kvacxln6n3b50kwg14cjrirr2yx";
|
||||
}) { inherit (super) pkgs; };
|
||||
})
|
||||
];
|
||||
};
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager/master";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
nur.url = "github:nix-community/NUR";
|
||||
disko = {
|
||||
url = "github:nix-community/disko";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, home-manager, nur, disko }:
|
||||
outputs = { self, nixpkgs, home-manager, disko }:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = import nixpkgs {
|
||||
|
|
@ -29,7 +38,6 @@
|
|||
inherit system;
|
||||
modules = [
|
||||
./sysConfig/desktop
|
||||
nur.nixosModules.nur
|
||||
disko.nixosModules.disko
|
||||
home-manager.nixosModules.home-manager {
|
||||
home-manager.useGlobalPkgs = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue