Compare commits
No commits in common. "7f24c3e3b18ab6bcc1f3be22359663c190cdd628" and "505eac929af7e973122cb7b6cc7eabe8f48a7b53" have entirely different histories.
7f24c3e3b1
...
505eac929a
|
@ -1,5 +1,8 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, inputs, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
neovim-package = inputs.neovim-overlay.packages.${pkgs.system}.default;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../../home/modules
|
../../home/modules
|
||||||
|
@ -49,16 +52,17 @@
|
||||||
|
|
||||||
# services.easyeffects.enable = true;
|
# services.easyeffects.enable = true;
|
||||||
|
|
||||||
|
programs.chromium = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.google-chrome;
|
||||||
|
};
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
nix-output-monitor
|
nix-output-monitor
|
||||||
(writeShellScriptBin "rebuild" ''
|
(writeShellScriptBin "rebuild" ''
|
||||||
nixos-rebuild switch --log-format internal-json -v |& nom --json
|
nixos-rebuild switch --log-format internal-json -v |& nom --json
|
||||||
'')
|
'')
|
||||||
|
|
||||||
(writeShellScriptBin "alt-firefox" ''
|
|
||||||
${lib.getExe pkgs.firefox} -P "alt"
|
|
||||||
'')
|
|
||||||
|
|
||||||
(writeShellScriptBin "suspend" ''
|
(writeShellScriptBin "suspend" ''
|
||||||
systemctl suspend
|
systemctl suspend
|
||||||
'')
|
'')
|
||||||
|
|
Loading…
Reference in New Issue