Compare commits

..

No commits in common. "8a3a82c0de92cea419b511c323e3135d402e2bd4" and "c7f31647b46bfc3ede720b751fb1d16dc2314e90" have entirely different histories.

5 changed files with 12 additions and 16 deletions

12
flake.lock generated
View File

@ -412,11 +412,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1712791164, "lastModified": 1712608508,
"narHash": "sha256-3sbWO1mbpWsLepZGbWaMovSO7ndZeFqDSdX0hZ9nVyw=", "narHash": "sha256-vMZ5603yU0wxgyQeHJryOI+O61yrX2AHwY6LOFyV1gM=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "1042fd8b148a9105f3c0aca3a6177fd1d9360ba5", "rev": "4cba8b53da471aea2ab2b0c1f30a81e7c451f4b6",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -527,11 +527,11 @@
"nixpkgs-stable": "nixpkgs-stable_2" "nixpkgs-stable": "nixpkgs-stable_2"
}, },
"locked": { "locked": {
"lastModified": 1712897695, "lastModified": 1712579741,
"narHash": "sha256-nMirxrGteNAl9sWiOhoN5tIHyjBbVi5e2tgZUgZlK3Y=", "narHash": "sha256-igpsH+pa6yFwYOdah3cFciCk8gw+ytniG9quf5f/q84=",
"owner": "cachix", "owner": "cachix",
"repo": "pre-commit-hooks.nix", "repo": "pre-commit-hooks.nix",
"rev": "40e6053ecb65fcbf12863338a6dcefb3f55f1bf8", "rev": "70f504012f0a132ac33e56988e1028d88a48855c",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -20,11 +20,11 @@
./modules/shell.nix ./modules/shell.nix
./modules/nvim.nix ./modules/nvim.nix
./modules/restic.nix ./modules/restic.nix
# ./modules/theming.nix # Not needed when using plasma # ./modules/theming.nix Not needed when using plasma
./modules/plasma.nix ./modules/plasma.nix
./modules/alacritty.nix ./modules/alacritty.nix
./modules/newsboat.nix ./modules/newsboat.nix
# ./modules/helix.nix ./modules/helix.nix
./modules/tofi.nix ./modules/tofi.nix
./modules/vkbasalt.nix ./modules/vkbasalt.nix
./modules/nushell.nix ./modules/nushell.nix
@ -69,7 +69,6 @@
p7zip # 7Zip p7zip # 7Zip
protonvpn-gui # Protonvpn protonvpn-gui # Protonvpn
mumble # Mumble gui mumble # Mumble gui
# feishin # Jellyfin player
(nerdfonts.override { fonts = [ "CascadiaCode" ]; }) # Best font (nerdfonts.override { fonts = [ "CascadiaCode" ]; }) # Best font
# (retroarch.override { # (retroarch.override {
# cores = with libretro; [ # cores = with libretro; [

View File

@ -7,14 +7,13 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "imLinguin"; owner = "imLinguin";
repo = "comet"; repo = "comet";
rev = "95753236846cbd0980e679c4dbe73fb5908a6956"; rev = "389e5d4316c4d384fcb089e0d3289a9c21c07291";
hash = "sha256-5PjBOd6RIvnd41PjiGZKl+nq9ZKBZHsXNjYdSsnsu+w="; hash = "sha256-10MvcR62OI0dZSoUNzmM6QjyZGSfG9Re7CW0nW1iZz4=";
fetchSubmodules = true; fetchSubmodules = true;
}; };
PROTOC = "${protobuf}/bin/protoc";
PROTOC_INCLUDE = "${protobuf}/include";
nativeBuildInputs = [ protobuf ]; nativeBuildInputs = [ protobuf ];
patches = [ ./patches/comet.patch ];
cargoLock.lockFile = src + /Cargo.lock; cargoLock.lockFile = src + /Cargo.lock;
} }

View File

@ -5,11 +5,9 @@
escapeTime = 0; escapeTime = 0;
keyMode = "vi"; keyMode = "vi";
mouse = true; mouse = true;
newSession = true;
plugins = with pkgs; [ plugins = with pkgs; [
tmuxPlugins.sensible tmuxPlugins.sensible
tmuxPlugins.yank tmuxPlugins.yank
tmuxPlugins.fzf-tmux-url
{ {
plugin = tmuxPlugins.catppuccin; plugin = tmuxPlugins.catppuccin;
extraConfig = '' extraConfig = ''

View File

@ -71,7 +71,7 @@
services.xserver.libinput.enable = true; services.xserver.libinput.enable = true;
# Enable sddm with catppuccin theme and fix virtual keyboard bug # Enable sddm with catppuccin theme and fix virtual keyboard bug
services.displayManager.sddm = { services.xserver.displayManager.sddm = {
enable = true; enable = true;
wayland.enable = true; wayland.enable = true;
theme = "catppuccin-frappe"; theme = "catppuccin-frappe";