Changed wallpaper to better fit the style of the WM - affected common variables - affected hyprland configuration - affected stylix configuration - included additional flake inputs Added Spicetify packages (not working) Added obs-studio home-manager program option Added vimkey navigation keybinds for Hyprland
154 lines
3.6 KiB
Nix
154 lines
3.6 KiB
Nix
# his is your home-manager configuration file
|
|
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
|
|
{
|
|
inputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
# You can import other home-manager modules here
|
|
imports = [
|
|
# If you want to use home-manager modules from other flakes (such as nix-colors):
|
|
# inputs.nix-colors.homeManagerModule
|
|
|
|
# You can also split up your configuration and import pieces of it here:
|
|
#./swaywm.nix
|
|
./hypr
|
|
./shells
|
|
../../common/variables.nix
|
|
./mako.nix
|
|
./wechat
|
|
./editors.nix
|
|
./gtk.nix
|
|
./ags
|
|
./xdg.nix
|
|
./stylix.nix
|
|
./spicetify.nix
|
|
./scripts
|
|
];
|
|
|
|
nixpkgs = {
|
|
# You can add overlays here
|
|
overlays = [
|
|
# If you want to use overlays exported from other flakes:
|
|
# neovim-nightly-overlay.overlays.default
|
|
|
|
# Or define it inline, for example:
|
|
# (final: prev: {
|
|
# hi = final.hello.overrideAttrs (oldAttrs: {
|
|
# patches = [ ./change-hello-to-hi.patch ];
|
|
# });
|
|
# })
|
|
(final: prev: {
|
|
ags = prev.ags.overrideAttrs (old: {
|
|
buildInputs = old.buildInputs ++ [pkgs.libdbusmenu-gtk3];
|
|
});
|
|
})
|
|
];
|
|
# Configure your nixpkgs instance
|
|
config = {
|
|
# Disable if you don't want unfree packages
|
|
allowUnfree = true;
|
|
# Workaround for https://github.com/nix-community/home-manager/issues/2942
|
|
allowUnfreePredicate = _: true;
|
|
};
|
|
};
|
|
|
|
home = {
|
|
username = "${config.myUserName}";
|
|
homeDirectory = "/home/${config.myUserName}";
|
|
# copy wallpaper from assets
|
|
file = {"wallpaper.jpg".source = ./assets/nixos-wallpaper.jpg;};
|
|
};
|
|
home.packages = with pkgs; [
|
|
protonvpn-gui
|
|
devenv
|
|
vlc
|
|
tree
|
|
zed-editor
|
|
rhythmbox
|
|
clash-verge-rev
|
|
qq
|
|
libreoffice
|
|
discord
|
|
#zathura
|
|
kdePackages.okular
|
|
shotwell
|
|
mpv
|
|
kdenlive
|
|
obsidian
|
|
pcmanfm
|
|
udiskie
|
|
android-file-transfer
|
|
usbutils
|
|
mtpfs
|
|
teams-for-linux
|
|
sxiv
|
|
];
|
|
myAutostartCommands = [
|
|
"${pkgs.clash-verge-rev}/bin/clash-verge"
|
|
"${pkgs.firefox}/bin/firefox"
|
|
"${pkgs.thunderbird}/bin/thunderbird"
|
|
];
|
|
|
|
programs = {
|
|
obs-studio = {
|
|
enable = true;
|
|
plugins = [pkgs.obs-studio-plugins.wlrobs];
|
|
};
|
|
home-manager.enable = true;
|
|
firefox.enable = true;
|
|
thunderbird = {
|
|
enable = true;
|
|
profiles.default = {isDefault = true;};
|
|
};
|
|
git = {
|
|
enable = true;
|
|
package = pkgs.gitFull;
|
|
userName = config.myDisplayName;
|
|
userEmail = config.myEmail;
|
|
extraConfig = {
|
|
push.autoSetupRemote = true;
|
|
commit.gpgsign = true;
|
|
gpg.format = "ssh";
|
|
gpg.ssh.allowedSignersFile = "/home/${config.myUserName}/.ssh/allowed_signers";
|
|
user.signingkey = "/home/${config.myUserName}/.ssh/id_ed25519.pub";
|
|
credential.helper = "libsecret";
|
|
};
|
|
};
|
|
};
|
|
# Nicely reload system units when changing configs
|
|
systemd.user.startServices = "sd-switch";
|
|
services.kanshi = {
|
|
enable = true;
|
|
profiles = {
|
|
undocked = {
|
|
outputs = [
|
|
{
|
|
criteria = "eDP-1";
|
|
scale = 1.0;
|
|
status = "enable";
|
|
}
|
|
];
|
|
};
|
|
docked_office_cn = {
|
|
outputs = [
|
|
{
|
|
criteria = "AOC 2619 M1194JA002428";
|
|
position = "0,0";
|
|
mode = "1920x1200@59.94Hz";
|
|
}
|
|
{
|
|
criteria = "eDP-1";
|
|
position = "0,0";
|
|
status = "disable";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
systemdTarget = "hyprland-session.target";
|
|
};
|
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
|
home.stateVersion = "24.05";
|
|
}
|