Compare commits
3 Commits
cb0c671f47
...
450be7531d
| Author | SHA1 | Date | |
|---|---|---|---|
| 450be7531d | |||
| d008fa5814 | |||
| 9aadd03d66 |
@@ -1,7 +1,6 @@
|
|||||||
# This module is for programs with GUIs that run in a desktop environment
|
# This module is for programs with GUIs that run in a desktop environment
|
||||||
{ inputs, ... }:
|
{ self, inputs, ... }: {
|
||||||
{
|
flake.modules.homeManager.desktop = { config, pkgs, lib, ... }: {
|
||||||
flake.modules.homeManager.desktop = { pkgs, ... }: {
|
|
||||||
imports = with inputs.self.modules.homeManager; [
|
imports = with inputs.self.modules.homeManager; [
|
||||||
brave
|
brave
|
||||||
ghostty
|
ghostty
|
||||||
@@ -11,6 +10,7 @@
|
|||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
mangohud
|
mangohud
|
||||||
sublime4
|
sublime4
|
||||||
|
proton-vpn
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
gnome
|
gnome
|
||||||
desktop
|
desktop
|
||||||
];
|
];
|
||||||
|
vscode.enable = true;
|
||||||
}
|
}
|
||||||
] ++ (with self.modules.nixos; [
|
] ++ (with self.modules.nixos; [
|
||||||
p14sConfiguration
|
p14sConfiguration
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{ self, inputs, ... }: {
|
{ self, inputs, ... }: {
|
||||||
flake.modules.homeManager.git = { config, pkgs, lib, ... }: {
|
flake.modules.homeManager.git = { config, pkgs, lib, ... }: {
|
||||||
home.packges = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
git-credential-oauth
|
git-credential-oauth
|
||||||
];
|
];
|
||||||
programs.git = {
|
programs.git = {
|
||||||
@@ -16,5 +16,8 @@
|
|||||||
enableBashIntegration = true;
|
enableBashIntegration = true;
|
||||||
enableZshIntegration = true;
|
enableZshIntegration = true;
|
||||||
};
|
};
|
||||||
|
home.shellAliases = {
|
||||||
|
"lzg" = "lazygit";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
{
|
{ self, inputs, ... }: {
|
||||||
flake.modules.homeManager.vscode = { pkgs, ... }:
|
flake.modules.homeManager.vscode = { config, pkgs, lib, ... }: {
|
||||||
{
|
options.vscode = {
|
||||||
|
enable = lib.mkEnableOption "Enable nix-managed VSCode";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = lib.mkIf config.vscode.enable {
|
||||||
programs.vscode = {
|
programs.vscode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.vscode;
|
package = pkgs.vscode;
|
||||||
@@ -18,4 +22,5 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user