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.libreoffice.enable = true;
|
||||
my.steam.enable = true;
|
||||
my.utilities.enable = true;
|
||||
|
||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||
users.users.michael = {
|
||||
|
@ -11,5 +11,6 @@
|
||||
environment.systemPackages = with pkgs; [
|
||||
docker-client
|
||||
docker-compose
|
||||
distrobox
|
||||
];
|
||||
}
|
||||
|
@ -18,20 +18,18 @@ in {
|
||||
programs.ags = {
|
||||
enable = true;
|
||||
|
||||
extraPackages = with pkgs; [
|
||||
bun
|
||||
which
|
||||
extraPackages =
|
||||
(with pkgs; [
|
||||
fzf
|
||||
# inputs.matugen.packages.${system}.default
|
||||
slurp
|
||||
wf-recorder
|
||||
wl-clipboard
|
||||
wayshot
|
||||
swappy
|
||||
pavucontrol
|
||||
networkmanager
|
||||
gtk3
|
||||
];
|
||||
])
|
||||
++ (with inputs.ags.packages.${pkgs.system}; [
|
||||
battery
|
||||
hyprland
|
||||
mpris
|
||||
network
|
||||
tray
|
||||
wireplumber
|
||||
]);
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
|
@ -5,8 +5,11 @@
|
||||
}: {
|
||||
home.packages = with pkgs; [
|
||||
git-lfs
|
||||
lazygit
|
||||
];
|
||||
|
||||
home.shellAliases.lg = "lazygit";
|
||||
|
||||
# Use pkgs.gitAndTools.gitFull in order to get libsecret support
|
||||
programs.git = {
|
||||
enable = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user