This commit is contained in:
Miguel Palhas
2024-10-06 11:37:02 +01:00
parent 76c886362a
commit adda4f9e06
4 changed files with 30 additions and 13 deletions
Generated
+9 -9
View File
@@ -775,11 +775,11 @@
"treefmt-nix": "treefmt-nix" "treefmt-nix": "treefmt-nix"
}, },
"locked": { "locked": {
"lastModified": 1728118042, "lastModified": 1728176751,
"narHash": "sha256-UL738XeO0WlfqcCsA25vVjeqoBHyXqmOcy3uq6qtgHI=", "narHash": "sha256-hVmdzrZMFC/5q3dSjbKX9qocWN9coPBhs8muLsL3738=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nixvim", "repo": "nixvim",
"rev": "aeb6ae37a78db5499a78dca5dbe2e8bf2bf5fce6", "rev": "d42c804ad515f45f8addaf5a4bb0b8ce405ea140",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -813,11 +813,11 @@
"nvchad-starter": { "nvchad-starter": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1728120198, "lastModified": 1728210589,
"narHash": "sha256-aRelT5eqYpuoJgygkWCAl2uwkjdeWmDJ9aujyMFj7i4=", "narHash": "sha256-+536wDiEtuZ8Zy7hnwbsZfGTOOXw+NCszlaRdkpqQi4=",
"owner": "naps62", "owner": "naps62",
"repo": "nvchad-starter", "repo": "nvchad-starter",
"rev": "9981dee65a037f762edee79d8e6c39efee6206e4", "rev": "f2ac3c44de3eb5cd2bb25509c3c29b4371d60b29",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -836,11 +836,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1728096945, "lastModified": 1728187146,
"narHash": "sha256-W5DPDBb/+SqmtBdInHVgbgBe2GhYD0wnnPcnMpuCrRc=", "narHash": "sha256-mJ7wJvr9AhakBYbPYq3Md7nLj2T+c57V/lfdvxe/gis=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nix4nvchad", "repo": "nix4nvchad",
"rev": "5c4d85b9b16dab043630f8e4f1e428490e6cfdfa", "rev": "c77eae90663c5e75988f2f21268aa162f9882e3d",
"type": "github" "type": "github"
}, },
"original": { "original": {
+7 -2
View File
@@ -3,9 +3,14 @@ let
rofiLaunchers = import ../../../pkgs/rofi-launchers/package.nix { }; rofiLaunchers = import ../../../pkgs/rofi-launchers/package.nix { };
in in
{ {
imports = [ ./rofi.nix ]; imports = [
./rofi.nix
./dunst.nix
];
home.packages = with pkgs; [ hyprcursor ]; home.packages = with pkgs; [
hyprcursor
];
home.sessionVariables = { home.sessionVariables = {
ELECTRON_OZONE_PLATFORM_HINT = "auto"; ELECTRON_OZONE_PLATFORM_HINT = "auto";
+7
View File
@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
programs.dunst = {
enable = true;
catppuccin = true;
};
}
+7 -2
View File
@@ -1,4 +1,9 @@
{ pkgs, ... }: { { pkgs, ... }:
home.packages = with pkgs; [ rustup ]; {
home.packages = with pkgs; [
rustup
bacon
libgcc
];
home.sessionPath = [ "\${CARGO_HOME:-~/.cargo}/bin" ]; home.sessionPath = [ "\${CARGO_HOME:-~/.cargo}/bin" ];
} }