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.
46 lines
668 B
46 lines
668 B
{ config, pkgs, user, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../vim.nix
|
|
../wallpaper.nix
|
|
../picom.nix
|
|
../i3.nix
|
|
../polybar
|
|
../rofi
|
|
../git.nix
|
|
../terminal.nix
|
|
];
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
home = {
|
|
username = "${user}";
|
|
homeDirectory = "/home/${user}";
|
|
|
|
stateVersion = "22.05";
|
|
|
|
packages = with pkgs; [
|
|
# Command line utilities
|
|
wget
|
|
neofetch
|
|
ranger
|
|
trash-cli # aliased to rm in .bashrc
|
|
|
|
# GUI applications
|
|
firefox
|
|
discord
|
|
];
|
|
|
|
file = {
|
|
".bashrc" = {
|
|
source = ../.bashrc;
|
|
};
|
|
};
|
|
|
|
sessionVariables = {
|
|
EDITOR = "vim";
|
|
};
|
|
};
|
|
}
|