wip
This commit is contained in:
30
config/home-manager/home.nix
Normal file
30
config/home-manager/home.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ config, pkgs, ... }: {
|
||||
imports = [
|
||||
./vscode.nix
|
||||
./fonts.nix
|
||||
./kitty.nix
|
||||
./dconf.nix
|
||||
./keyboard-shortcuts.nix
|
||||
./virtualization.nix
|
||||
./packages.nix
|
||||
./auto-start.nix
|
||||
];
|
||||
|
||||
nixpkgs = {
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
allowUnfreePredicate = (_: true);
|
||||
};
|
||||
};
|
||||
|
||||
home.username = "menno";
|
||||
home.homeDirectory = "/home/menno";
|
||||
home.stateVersion = "24.05";
|
||||
home.file = { };
|
||||
|
||||
home.sessionVariables = {
|
||||
GOROOT = "${pkgs.go}/share/go";
|
||||
GOPATH = "${config.home.homeDirectory}/go";
|
||||
PATH = "${config.home.homeDirectory}/go/bin:$PATH";
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user