2023-04-25 20:10:57 +00:00
|
|
|
# This is your home-manager configuration file
|
|
|
|
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
|
|
|
|
{
|
2023-04-25 21:59:40 +00:00
|
|
|
inputs,
|
2023-04-25 20:10:57 +00:00
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
# You can import other home-manager modules here
|
|
|
|
imports = [
|
|
|
|
# If you want to use modules your own flake exports (from modules/home-manager):
|
|
|
|
# outputs.homeManagerModules.example
|
|
|
|
|
|
|
|
# Or modules exported from other flakes (such as nix-colors):
|
|
|
|
# inputs.nix-colors.homeManagerModules.default
|
|
|
|
|
|
|
|
# You can also split up your configuration and import pieces of it here:
|
2023-04-25 21:16:04 +00:00
|
|
|
./neovim-flake.nix
|
2023-04-25 22:26:20 +00:00
|
|
|
./arrpc.nix
|
2023-04-25 20:10:57 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
home = {
|
|
|
|
username = "floppydisk";
|
|
|
|
homeDirectory = "/home/floppydisk";
|
2023-04-25 21:59:40 +00:00
|
|
|
packages = with pkgs; [
|
|
|
|
steam
|
|
|
|
vscode
|
|
|
|
_1password-gui
|
|
|
|
_1password
|
|
|
|
neofetch
|
|
|
|
microsoft-edge
|
|
|
|
jetbrains.ruby-mine
|
|
|
|
jetbrains.rider
|
|
|
|
jetbrains.phpstorm
|
|
|
|
jetbrains.idea-ultimate
|
|
|
|
inputs.arrpc.packages.${pkgs.system}.arrpc
|
2023-04-26 11:05:20 +00:00
|
|
|
lazygit
|
2023-04-27 09:50:39 +00:00
|
|
|
dotnet-sdk
|
2023-04-27 22:12:13 +00:00
|
|
|
minecraft
|
2023-05-02 13:20:27 +00:00
|
|
|
mongodb-compass
|
2023-05-04 13:22:48 +00:00
|
|
|
tidal-hifi
|
2023-04-25 21:59:40 +00:00
|
|
|
];
|
2023-04-25 20:10:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Add stuff for your user as you see fit:
|
|
|
|
programs = {
|
|
|
|
# Enable home-manager
|
|
|
|
home-manager.enable = true;
|
|
|
|
|
2023-04-25 21:43:52 +00:00
|
|
|
# Enable fish shell
|
2023-04-25 21:46:34 +00:00
|
|
|
fish = {
|
|
|
|
enable = true;
|
|
|
|
interactiveShellInit = ''
|
|
|
|
set fish_greeting # Disable fish_greeting
|
2023-04-26 22:55:50 +00:00
|
|
|
export GPG_TTY=$(tty)
|
2023-04-25 21:46:34 +00:00
|
|
|
'';
|
|
|
|
};
|
2023-04-25 21:43:52 +00:00
|
|
|
|
2023-04-25 20:10:57 +00:00
|
|
|
# enable git and configure users
|
|
|
|
git = {
|
|
|
|
enable = true;
|
|
|
|
userName = "Frankie B.";
|
|
|
|
userEmail = "git@diskfloppy.me";
|
2023-04-26 22:55:50 +00:00
|
|
|
signing = {
|
|
|
|
key = "B428A0D1B4E2BAB0";
|
|
|
|
signByDefault = true;
|
|
|
|
};
|
2023-04-25 20:10:57 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# Nicely reload system units when changing configs
|
|
|
|
systemd.user.startServices = "sd-switch";
|
|
|
|
|
|
|
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
|
|
|
home.stateVersion = "22.11";
|
|
|
|
}
|