59 lines
1.3 KiB
Nix
59 lines
1.3 KiB
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../home-manager/base.nix
|
|
../../home-manager/development/vscode.nix
|
|
];
|
|
|
|
terminal.nixUpdateLocation = "/home/worble/Projects/nixos#starlite";
|
|
terminal.flakeUpdateLocation = "/home/worble/Projects/nixos";
|
|
|
|
home.username = "worble";
|
|
home.homeDirectory = "/home/worble";
|
|
|
|
home.stateVersion = "24.05";
|
|
|
|
home.packages = with pkgs;[ ];
|
|
|
|
home.file = {
|
|
# # Building this configuration will create a copy of 'dotfiles/screenrc' in
|
|
# # the Nix store. Activating the configuration will then make '~/.screenrc' a
|
|
# # symlink to the Nix store copy.
|
|
# ".screenrc".source = dotfiles/screenrc;
|
|
|
|
# # You can also set the file content immediately.
|
|
# ".gradle/gradle.properties".text = ''
|
|
# org.gradle.console=verbose
|
|
# org.gradle.daemon.idletimeout=3600000
|
|
# '';
|
|
};
|
|
|
|
home.sessionVariables = {
|
|
NIXOS_OZONE_WL = "1";
|
|
};
|
|
|
|
services.nextcloud-client = {
|
|
enable = true;
|
|
startInBackground = true;
|
|
};
|
|
|
|
# Let Home Manager install and manage itself.
|
|
programs = {
|
|
home-manager.enable = true;
|
|
|
|
chromium = {
|
|
enable = true;
|
|
package = pkgs.brave;
|
|
};
|
|
|
|
mpv = {
|
|
enable = true;
|
|
config = {
|
|
screenshot-directory = "~/Pictures/";
|
|
screenshot-template = "%F/%F_snapshot_%P";
|
|
};
|
|
};
|
|
};
|
|
}
|