{ config, pkgs, ... }: { # Let Home Manager install and manage itself. programs.home-manager.enable = true; # Home Manager needs a bit of information about you and the # paths it should manage. home.username = "dyamon"; home.homeDirectory = "/home/dyamon"; # This value determines the Home Manager release that your # configuration is compatible with. This helps avoid breakage # when a new Home Manager release introduces backwards # incompatible changes. # # You can update Home Manager without changing this value. See # the Home Manager release notes for a list of state version # changes in each release. home.stateVersion = "22.05"; imports = [ ./modules/fonts.nix ./modules/bash.nix ./modules/tmux.nix ./modules/readline.nix ./modules/foot.nix ./modules/gpg.nix ./modules/nnn.nix ./modules/ripgrep.nix ./modules/mpv.nix ./modules/neovim.nix ./modules/ssh.nix ../../secrets/ssh.nix ]; programs.mpv.defaultProfiles = [ "low-quality" ]; programs.ssh.keys.gitolite = true; programs.gpg.enable = true; services.gpg-agent.enable = true; programs.git = { enable = true; userName = "Federico Igne"; userEmail = "git@federicoigne.com"; }; programs.waybar = { enable = true; }; home.file."waybar/config" = { # Can trigger bar restart source = ./config/waybar/config; target = ".config/waybar/config"; }; home.file."waybar/style.css" = { # Can trigger bar restart source = ./config/waybar/style.css; target = ".config/waybar/style.css"; }; wayland.windowManager.sway = { enable = true; config = { modifier = "Mod1"; terminal = "foot"; bars = [ { command = "waybar"; } ]; }; }; home.packages = with pkgs; [ tree foot zathura git-crypt pciutils wofi fzf ]; }