33 lines
865 B
Nix
33 lines
865 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../home-manager
|
|
../../home-manager/development/vscode.nix
|
|
];
|
|
|
|
terminal.nixUpdateLocation = "/home/worble/Projects/nixos#starlite";
|
|
terminal.flakeUpdateLocation = "/home/worble/Projects/nixos";
|
|
firefox.tablet = true;
|
|
|
|
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
|
|
# '';
|
|
};
|
|
}
|