Skip to content

Commit 630e809

Browse files
committed
✨ I MISSED YOU LINUX, FUCK YOU MACOS
1 parent 442e3b3 commit 630e809

File tree

15 files changed

+76
-88
lines changed

15 files changed

+76
-88
lines changed

flake.lock

Lines changed: 58 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

home/profiles/voidling.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
inputs.neovim.packages.${system}.default
2424

2525
asciinema_3
26-
bitwarden
26+
bitwarden-desktop
2727
bore-cli
2828
bruno
2929
charm

hosts/aurelionite/default.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
{
33
imports = [
44
inputs.hm.nixosModules.default
5-
inputs.grub2-themes.nixosModules.default
65
inputs.impermanence.nixosModules.impermanence
76

87
./hardware.nix

hosts/grovetender/default.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
{
33
imports = [
44
inputs.hm.nixosModules.default
5-
inputs.grub2-themes.nixosModules.default
65
inputs.impermanence.nixosModules.impermanence
76

87
./hardware.nix

modules/home/core/pkgs/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
app2unit
1919
asciinema_3
20-
bitwarden
20+
bitwarden-desktop
2121
bore-cli
2222
bruno
2323
charm
@@ -84,7 +84,7 @@
8484
pavucontrol
8585
pfetch
8686
pgcli
87-
pinentry
87+
pinentry-gnome3
8888
playerctl
8989
pre-commit
9090
presenterm

modules/home/programs/lazygit/default.nix

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,13 @@ in
4040
git = {
4141
parseEmoji = true;
4242
overrideGpg = true;
43-
paging = {
44-
externalDiffCommand = "difft --color=always --syntax-highlight=on --display=inline";
45-
colorArg = "never";
46-
# pager = "${lib.getExe pkgs.ydiff} -p cat -s --wrap --width={{columnWidth}}";
47-
};
43+
pagers = [
44+
{
45+
externalDiffCommand = "difft --color=always --syntax-highlight=on --display=inline";
46+
colorArg = "never";
47+
# pager = "${lib.getExe pkgs.ydiff} -p cat -s --wrap --width={{columnWidth}}";
48+
}
49+
];
4850
commit = {
4951
signoff = true;
5052
};
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{ inputs, ... }:
2-
let
3-
inherit (inputs.neovim.packages."x86_64-linux") neovim;
4-
in
52
{
6-
home.packages = [ neovim ];
3+
imports = [ inputs.neovim.homeModules.default ];
4+
nvim.enable = true;
75
}

modules/home/programs/quickshell/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ in
2929
wayland.windowManager.hyprland = {
3030
settings = {
3131
bind = [
32-
# "SUPER, D, global, caelestia:launcher"
32+
"SUPER, D, global, caelestia:launcher"
3333
"SUPER, C, global, caelestia:clearNotifs"
3434
"SUPER, L, global, caelestia:lock"
3535

modules/home/programs/rofi/default.nix

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
config,
33
lib,
4-
pkgs,
54
...
65
}:
76
let
@@ -15,8 +14,6 @@ in
1514
config = mkIf cfg.enable {
1615
programs.rofi = {
1716
enable = true;
18-
package = pkgs.rofi-wayland;
19-
# font = "Iosevka Nerd Font";
2017
extraConfig = {
2118
modi = "drun";
2219
display-drun = "";

modules/home/services/vicinae/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ in
2626
imports = [ inputs.vicinae.homeManagerModules.default ];
2727
config = mkIf cfg.enable {
2828
services.vicinae = {
29-
enable = true;
29+
enable = false;
3030
};
3131
};
3232
}

0 commit comments

Comments
 (0)