move sway home-manager options to their own module
This commit is contained in:
@@ -1,33 +1,22 @@
|
||||
{ config, pkgs, ... }:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./fonts.nix
|
||||
./pass.nix
|
||||
];
|
||||
|
||||
home.packages = [
|
||||
pkgs.alacritty
|
||||
pkgs.tofi
|
||||
pkgs.i3status-rust
|
||||
pkgs.wlsunset
|
||||
home.packages = with pkgs; [
|
||||
discord
|
||||
seahorse
|
||||
|
||||
pkgs.discord
|
||||
|
||||
pkgs.seahorse
|
||||
wl-clipboard
|
||||
];
|
||||
|
||||
programs.alacritty.enable = true;
|
||||
xdg.configFile."alacritty".source = "${config.dotfiles.path}/.config/alacritty";
|
||||
|
||||
xdg.configFile = {
|
||||
"sway".source = "${config.dotfiles.path}/.config/sway";
|
||||
"i3status-rust".source = "${config.dotfiles.path}/.config/i3status-rust";
|
||||
"tofi/config".source = "${config.dotfiles.path}/.config/tofi/config";
|
||||
};
|
||||
|
||||
home.pointerCursor = {
|
||||
gtk.enable = true;
|
||||
x11.enable = true;
|
||||
package = pkgs.capitaine-cursors;
|
||||
name = "capitaine-cursors";
|
||||
size = 48;
|
||||
};
|
||||
}
|
||||
|
||||
22
home/desktop/sway.nix
Normal file
22
home/desktop/sway.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
alacritty
|
||||
tofi
|
||||
i3status-rust
|
||||
mako
|
||||
wlsunset
|
||||
kanshi
|
||||
grim
|
||||
slurp
|
||||
];
|
||||
|
||||
xdg.configFile = {
|
||||
"sway".source = "${config.dotfiles.path}/.config/sway";
|
||||
"i3status-rust".source = "${config.dotfiles.path}/.config/i3status-rust";
|
||||
"tofi/config".source = "${config.dotfiles.path}/.config/tofi/config";
|
||||
};
|
||||
|
||||
programs.alacritty.enable = true;
|
||||
xdg.configFile."alacritty".source = "${config.dotfiles.path}/.config/alacritty";
|
||||
}
|
||||
Reference in New Issue
Block a user