Compare commits

..

2 commits

Author SHA1 Message Date
Aria Nolan 47746c387a :( 2023-11-05 01:32:53 -05:00
Aria Nolan 2a9236e833 an attempt at firefox 2023-11-05 01:59:16 -04:00
4 changed files with 32 additions and 2 deletions

View file

@ -140,12 +140,28 @@
"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,6 +23,7 @@
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
@ -33,6 +34,7 @@
home-manager, home-manager,
helix, helix,
nixos-hardware, nixos-hardware,
nur,
... ...
}: let }: let
system = "x86_64-linux"; system = "x86_64-linux";

View file

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

View file

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