34 lines
774 B
Nix
34 lines
774 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.username = "chris";
|
|
home.homeDirectory = "/home/chris";
|
|
home.stateVersion = "23.05";
|
|
programs.home-manager.enable = true;
|
|
home.packages = with pkgs; [
|
|
eww-wayland
|
|
swww
|
|
starship
|
|
# The guix version of dolphin isn't built for wayland and can't find the icon theme
|
|
dolphin
|
|
];
|
|
|
|
programs.firefox = {
|
|
enable = true;
|
|
package = pkgs.firefox-wayland.override {
|
|
cfg = {
|
|
enableTridactylNative = true;
|
|
enablePlasmaBrowserIntegration = true;
|
|
};
|
|
};
|
|
profiles.chris = {
|
|
name = "default";
|
|
path = "chris.default";
|
|
isDefault = true;
|
|
};
|
|
};
|
|
|
|
|
|
home.file.".mozilla/native-messaging-hosts".source = "/home/chris/.nix-profile/lib/mozilla/native-messaging-hosts";
|
|
}
|