Move sway config to new module, don't enable
This commit is contained in:
parent
65c4c94cd1
commit
20046902ed
2 changed files with 21 additions and 16 deletions
|
|
@ -29,14 +29,6 @@
|
||||||
keyMap = "fr";
|
keyMap = "fr";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Sway
|
|
||||||
programs.sway = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
programs.waybar = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
# Enable CUPS to print documents.
|
# Enable CUPS to print documents.
|
||||||
# services.printing.enable = true;
|
# services.printing.enable = true;
|
||||||
|
|
||||||
|
|
@ -75,26 +67,18 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
in [
|
in [
|
||||||
bemenu # slurpshot
|
|
||||||
grim # slurpshot
|
|
||||||
slurp # slurpshot
|
|
||||||
imv # slurpshot
|
|
||||||
alacritty
|
|
||||||
chromium
|
chromium
|
||||||
docker-compose
|
docker-compose
|
||||||
hunspell
|
hunspell
|
||||||
hunspellDicts.fr-classique
|
hunspellDicts.fr-classique
|
||||||
inkscape
|
inkscape
|
||||||
kanshi
|
|
||||||
libreoffice-fresh
|
libreoffice-fresh
|
||||||
my-vscode
|
my-vscode
|
||||||
nixfmt
|
nixfmt
|
||||||
pass-wayland
|
pass-wayland
|
||||||
pulsemixer
|
|
||||||
pwgen
|
pwgen
|
||||||
scribus
|
scribus
|
||||||
tex
|
tex
|
||||||
zathura
|
|
||||||
|
|
||||||
# General development
|
# General development
|
||||||
poetry
|
poetry
|
||||||
|
|
|
||||||
21
hosts/gwiad/sway.nix
Normal file
21
hosts/gwiad/sway.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
{ config, lib, pkgs, inputs, outputs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.sway = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
programs.waybar = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
users.users.jhemono.packages = with pkgs; [
|
||||||
|
bemenu # slurpshot
|
||||||
|
grim # slurpshot
|
||||||
|
slurp # slurpshot
|
||||||
|
imv # slurpshot
|
||||||
|
alacritty
|
||||||
|
kanshi
|
||||||
|
pulsemixer
|
||||||
|
zathura
|
||||||
|
];
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue