mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-24 07:51:55 -05:00
flake: update nixos-unstable; hosts: overly zed and rbw from unstable
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
This commit is contained in:
parent
e4baa1d8e5
commit
1078872191
|
@ -166,11 +166,11 @@
|
|||
},
|
||||
"nixpkgs-unstable": {
|
||||
"locked": {
|
||||
"lastModified": 1722630782,
|
||||
"narHash": "sha256-hMyG9/WlUi0Ho9VkRrrez7SeNlDzLxalm9FwY7n/Noo=",
|
||||
"lastModified": 1723175592,
|
||||
"narHash": "sha256-M0xJ3FbDUc4fRZ84dPGx5VvgFsOzds77KiBMW/mMTnI=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "d04953086551086b44b6f3c6b7eeb26294f207da",
|
||||
"rev": "5e0ca22929f3342b19569b21b2f3462f053e497b",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -67,7 +67,6 @@ in {
|
|||
|
||||
rbw = {
|
||||
enable = true;
|
||||
package = pkgs.rbw;
|
||||
|
||||
settings = {
|
||||
email = "alyraffauf@fastmail.com";
|
||||
|
@ -100,16 +99,11 @@ in {
|
|||
|
||||
zed = {
|
||||
enable = true;
|
||||
package = unstable.zed-editor;
|
||||
|
||||
settings = {
|
||||
auto_install_extensions = {nord = true;};
|
||||
|
||||
theme = {
|
||||
dark = "Rosé Pine Moon";
|
||||
light = "Rosé Pine Dawn";
|
||||
mode = "system";
|
||||
};
|
||||
settings.theme = {
|
||||
dark = "Rosé Pine Moon";
|
||||
light = "Rosé Pine Dawn";
|
||||
mode = "system";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -28,7 +28,6 @@ self: {
|
|||
|
||||
rbw = {
|
||||
enable = true;
|
||||
package = pkgs.rbw;
|
||||
|
||||
settings = {
|
||||
email = "dustinmraffauf@gmail.com";
|
||||
|
|
|
@ -2,8 +2,13 @@
|
|||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
self,
|
||||
...
|
||||
}: {
|
||||
}: let
|
||||
unstable = import self.inputs.nixpkgs-unstable {
|
||||
system = pkgs.system;
|
||||
};
|
||||
in {
|
||||
environment.variables.FLAKE = lib.mkDefault "github:alyraffauf/nixcfg";
|
||||
|
||||
nix.settings = {
|
||||
|
@ -26,24 +31,7 @@
|
|||
|
||||
overlays = [
|
||||
(final: prev: {
|
||||
rbw = prev.rbw.override (super: {
|
||||
rustPlatform =
|
||||
super.rustPlatform
|
||||
// {
|
||||
buildRustPackage = args:
|
||||
super.rustPlatform.buildRustPackage (args
|
||||
// {
|
||||
version = "1.12.1";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "doy";
|
||||
repo = "rbw";
|
||||
rev = "1.12.1";
|
||||
hash = "sha256-+1kalFyhk2UL+iVzuFLDsSSTudrd4QpXw+3O4J+KsLc=";
|
||||
};
|
||||
cargoHash = "sha256-cKbbsDb449WANGT+x8APhzs+hf5SR3RBsCBWDNceRMA=";
|
||||
});
|
||||
};
|
||||
});
|
||||
rbw = unstable.rbw;
|
||||
|
||||
rofi-bluetooth =
|
||||
prev.rofi-bluetooth.overrideAttrs
|
||||
|
@ -57,6 +45,8 @@
|
|||
sha256 = "sha256-o0Sr3/888L/2KzZZP/EcXx+8ZUzdHB/I/VIeVuJvJks=";
|
||||
};
|
||||
});
|
||||
|
||||
zed-editor = unstable.zed-editor;
|
||||
})
|
||||
];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue