Skip to content

Commit dadd413

Browse files
committed
chore: autostart apps and small qol change
1 parent 850f00f commit dadd413

7 files changed

Lines changed: 21 additions & 0 deletions

File tree

users/southcity/features/apps/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
./firefox.nix
55
./kitty.nix
66
./spotify.nix
7+
./xdg.nix
78
];
89
}

users/southcity/features/apps/discord.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,8 @@
33
home.packages = [
44
pkgs.discord
55
];
6+
7+
xdg.autostart.entries = [
8+
pkgs.discord
9+
];
610
}

users/southcity/features/apps/spotify.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,8 @@
33
home.packages = [
44
pkgs.spotify
55
];
6+
7+
xdg.autostart.entries = [
8+
pkgs.spotify
9+
];
610
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
xdg.autostart = {
3+
enable = true;
4+
};
5+
}

users/southcity/features/cli/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
./fzf.nix
99
./git.nix
1010
./jq.nix
11+
./news.nix
1112
./nixvim
1213
./starship.nix
1314
./tmux.nix
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
news.display = "silent";
3+
}

users/southcity/features/hyprland/hyprland.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@
8787
# fix for dragging issues with xwayland
8888
"nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0"
8989

90+
# aseprite
91+
"tile,class:Aseprite"
92+
9093
# wofi
9194
"float,class:wofi"
9295

0 commit comments

Comments
 (0)