Compare commits

..

No commits in common. "47746c387a5b733ec1abeae65d8ddc0c098c84d0" and "9f77bbb4ab58854c25789f70783f52ba0366a646" have entirely different histories.

4 changed files with 2 additions and 32 deletions

View file

@ -140,28 +140,12 @@
"type": "github" "type": "github"
} }
}, },
"nur": {
"locked": {
"lastModified": 1699163564,
"narHash": "sha256-Jxb/JkUJhXKalVRlhnh2B+lkGASxQ5vrymcHtU71qyI=",
"owner": "nix-community",
"repo": "nur",
"rev": "88abb29a4bfbd84a2f20380c2595db77d36c3635",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "nur",
"type": "github"
}
},
"root": { "root": {
"inputs": { "inputs": {
"helix": "helix", "helix": "helix",
"home-manager": "home-manager", "home-manager": "home-manager",
"nixos-hardware": "nixos-hardware", "nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs"
"nur": "nur"
} }
}, },
"rust-overlay": { "rust-overlay": {

View file

@ -23,7 +23,6 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
nixos-hardware.url = "github:NixOs/nixos-hardware/master"; nixos-hardware.url = "github:NixOs/nixos-hardware/master";
nur.url = "github:nix-community/nur";
}; };
# pass in the urls defined above # pass in the urls defined above
@ -34,7 +33,6 @@
home-manager, home-manager,
helix, helix,
nixos-hardware, nixos-hardware,
nur,
... ...
}: let }: let
system = "x86_64-linux"; system = "x86_64-linux";

View file

@ -2,7 +2,6 @@
imports = [ imports = [
./kitty.nix ./kitty.nix
./git.nix ./git.nix
./firefox.nix
]; ];
programs.eza = { programs.eza = {
@ -14,4 +13,5 @@
programs.bat = { programs.bat = {
enable = true; enable = true;
}; };
} }

View file

@ -1,12 +0,0 @@
{inputs, ...}: {
programs.firefox = {
enable = true;
profiles = {
"aria" = {
extensions = with inputs.nur.repos.rycee.firefox-addons; [
ublock-origin
];
};
};
};
}