Compare commits
3 commits
f63997f75f
...
ed1b2384e0
Author | SHA1 | Date | |
---|---|---|---|
Antoine Martin | ed1b2384e0 | ||
Antoine Martin | e6056b0498 | ||
Antoine Martin | 2dd209ed9f |
|
@ -28,6 +28,7 @@
|
||||||
# development
|
# development
|
||||||
git
|
git
|
||||||
git-crypt
|
git-crypt
|
||||||
|
gnumake
|
||||||
gnupg
|
gnupg
|
||||||
pinentry-curses
|
pinentry-curses
|
||||||
python3
|
python3
|
||||||
|
|
|
@ -115,6 +115,12 @@ in
|
||||||
|
|
||||||
window.commands = [
|
window.commands = [
|
||||||
{ command = "border pixel 2"; criteria = { class = "Alacritty"; }; }
|
{ command = "border pixel 2"; criteria = { class = "Alacritty"; }; }
|
||||||
|
|
||||||
|
# NOTE: should be done with an assign command, but Spotify doesn't set
|
||||||
|
# its class until after initialization, so has to be done this way.
|
||||||
|
#
|
||||||
|
# See https://i3wm.org/docs/userguide.html#assign_workspace
|
||||||
|
{ criteria = { class = "Spotify"; }; command = "move to workspace 8"; }
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
home-manager.users.alarsyo = {
|
home-manager.users.alarsyo = {
|
||||||
# Keyboard settings & i3 settings
|
# Keyboard settings & i3 settings
|
||||||
|
@ -11,5 +11,10 @@
|
||||||
my.home.fish.enable = true;
|
my.home.fish.enable = true;
|
||||||
|
|
||||||
my.theme = config.home-manager.users.alarsyo.my.themes.solarizedLight;
|
my.theme = config.home-manager.users.alarsyo.my.themes.solarizedLight;
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
beancount
|
||||||
|
fava
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue