fix: additional tweaks
This commit is contained in:
parent
a0f545a5ce
commit
5f0a1d6098
20
common/utilities/default.nix
Normal file
20
common/utilities/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
cfg = config.my.utilities;
|
||||||
|
in {
|
||||||
|
options.my.utilities = {
|
||||||
|
enable = lib.mkEnableOption "utilities";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = lib.mkIf cfg.enable {
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
wget
|
||||||
|
zip
|
||||||
|
unzip
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
@ -72,6 +72,7 @@
|
|||||||
my.hyprland.enable = true;
|
my.hyprland.enable = true;
|
||||||
my.libreoffice.enable = true;
|
my.libreoffice.enable = true;
|
||||||
my.steam.enable = true;
|
my.steam.enable = true;
|
||||||
|
my.utilities.enable = true;
|
||||||
|
|
||||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||||
users.users.michael = {
|
users.users.michael = {
|
||||||
|
@ -11,5 +11,6 @@
|
|||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
docker-client
|
docker-client
|
||||||
docker-compose
|
docker-compose
|
||||||
|
distrobox
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -18,20 +18,18 @@ in {
|
|||||||
programs.ags = {
|
programs.ags = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
extraPackages = with pkgs; [
|
extraPackages =
|
||||||
bun
|
(with pkgs; [
|
||||||
which
|
fzf
|
||||||
fzf
|
])
|
||||||
# inputs.matugen.packages.${system}.default
|
++ (with inputs.ags.packages.${pkgs.system}; [
|
||||||
slurp
|
battery
|
||||||
wf-recorder
|
hyprland
|
||||||
wl-clipboard
|
mpris
|
||||||
wayshot
|
network
|
||||||
swappy
|
tray
|
||||||
pavucontrol
|
wireplumber
|
||||||
networkmanager
|
]);
|
||||||
gtk3
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
@ -5,8 +5,11 @@
|
|||||||
}: {
|
}: {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
git-lfs
|
git-lfs
|
||||||
|
lazygit
|
||||||
];
|
];
|
||||||
|
|
||||||
|
home.shellAliases.lg = "lazygit";
|
||||||
|
|
||||||
# Use pkgs.gitAndTools.gitFull in order to get libsecret support
|
# Use pkgs.gitAndTools.gitFull in order to get libsecret support
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user