Compare commits
2 commits
9f77bbb4ab
...
47746c387a
Author | SHA1 | Date | |
---|---|---|---|
|
47746c387a | ||
|
2a9236e833 |
18
flake.lock
18
flake.lock
|
@ -140,12 +140,28 @@
|
|||
"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": {
|
||||
"inputs": {
|
||||
"helix": "helix",
|
||||
"home-manager": "home-manager",
|
||||
"nixos-hardware": "nixos-hardware",
|
||||
"nixpkgs": "nixpkgs"
|
||||
"nixpkgs": "nixpkgs",
|
||||
"nur": "nur"
|
||||
}
|
||||
},
|
||||
"rust-overlay": {
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
nixos-hardware.url = "github:NixOs/nixos-hardware/master";
|
||||
nur.url = "github:nix-community/nur";
|
||||
};
|
||||
|
||||
# pass in the urls defined above
|
||||
|
@ -33,6 +34,7 @@
|
|||
home-manager,
|
||||
helix,
|
||||
nixos-hardware,
|
||||
nur,
|
||||
...
|
||||
}: let
|
||||
system = "x86_64-linux";
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
imports = [
|
||||
./kitty.nix
|
||||
./git.nix
|
||||
./firefox.nix
|
||||
];
|
||||
|
||||
programs.eza = {
|
||||
|
@ -13,5 +14,4 @@
|
|||
programs.bat = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
12
users/tacocat/programs/firefox.nix
Normal file
12
users/tacocat/programs/firefox.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{inputs, ...}: {
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
profiles = {
|
||||
"aria" = {
|
||||
extensions = with inputs.nur.repos.rycee.firefox-addons; [
|
||||
ublock-origin
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue