Full Refactor and history reset
This commit is contained in:
41
home.nix
Normal file
41
home.nix
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
||||
imports = [
|
||||
inputs.home-manager.nixosModules.default
|
||||
];
|
||||
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
users.joe = {
|
||||
home.stateVersion = "18.09";
|
||||
xdg.enable = true;
|
||||
|
||||
xdg.desktopEntries.kitty_overlay = {
|
||||
name = "Kitty Overlay";
|
||||
genericName = "Kitten Overlay";
|
||||
exec = "kitten quick-access-terminal";
|
||||
terminal = false;
|
||||
categories = [
|
||||
"Application"
|
||||
];
|
||||
};
|
||||
xdg.desktopEntries.mongodb_compass = {
|
||||
name = "MongoDB Compass (libsecret)";
|
||||
genericName = "MongoDB GUI";
|
||||
exec = "mongodb-compass --password-store=\"gnome-libsecret\" --ignore-additional-command-line-flags";
|
||||
terminal = false;
|
||||
categories = [
|
||||
"Application"
|
||||
"Database"
|
||||
"Development"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user