Compare commits

..

No commits in common. "7f24c3e3b18ab6bcc1f3be22359663c190cdd628" and "505eac929af7e973122cb7b6cc7eabe8f48a7b53" have entirely different histories.

1 changed files with 9 additions and 5 deletions

View File

@ -1,5 +1,8 @@
{ pkgs, ... }:
{ pkgs, inputs, ... }:
let
neovim-package = inputs.neovim-overlay.packages.${pkgs.system}.default;
in
{
imports = [
../../home/modules
@ -49,16 +52,17 @@
# services.easyeffects.enable = true;
programs.chromium = {
enable = true;
package = pkgs.google-chrome;
};
home.packages = with pkgs; [
nix-output-monitor
(writeShellScriptBin "rebuild" ''
nixos-rebuild switch --log-format internal-json -v |& nom --json
'')
(writeShellScriptBin "alt-firefox" ''
${lib.getExe pkgs.firefox} -P "alt"
'')
(writeShellScriptBin "suspend" ''
systemctl suspend
'')