Want to contribute? Fork me on Codeberg.org!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

89 lines
1.5 KiB

{ config, pkgs, user, ... }:
let
theme = pkgs.nordic;
themeName = "Nordic";
in
{
imports = [
../vim.nix
../ranger.nix
../fcitx5.nix
../picom.nix
../i3.nix
../polybar
../rofi
../git.nix
../terminal.nix
];
programs.home-manager.enable = true;
2 years ago
gtk = {
enable = true;
iconTheme = {
name = "${themeName}";
package = "${theme}";
2 years ago
};
theme = {
name = "${themeName}";
package = "${theme}";
2 years ago
};
# Remove minimize, maximize, and close buttons
2 years ago
gtk3.extraConfig = {
gtk-decoration-layout = "appmenu:none";
};
gtk4.extraConfig = {
2 years ago
gtk-decoration-layout = "appmenu:none";
};
};
qt = {
enable = true;
platformTheme = "gtk";
};
home = {
username = "${user}";
homeDirectory = "/home/${user}";
stateVersion = "22.05";
packages = with pkgs; [
# Command line utilities
wget
neofetch
trash-cli # aliased to rm in .bashrc
# Configuration applications
networkmanagerapplet # nm-applet
# GUI applications
firefox
discord
2 years ago
gnome.nautilus
gimp
2 years ago
krita
];
};
programs.bash = {
enable = true;
shellAliases = {
g = "git";
ga = "g add";
gc = "g commit -m ";
gu = "ga . && gc";
gs = "g status";
gi = "g init";
gp = "g push";
gf = "g pull";
gC = "g clone";
goops = "g reset --soft HEAD^";
v = "vim";
rm = "trash-put";
};
};
}