Compare commits

..

3 commits

Author SHA1 Message Date
Jessica Canady b6b101b959 Whitespace changes. 2023-07-22 15:00:21 -04:00
Jessica Canady 7c91c2f2bd Add caffeine extension. 2023-07-22 14:59:57 -04:00
Jessica Canady 5e285062e1 Enable JACK.
And get rid of some invalid config.
2023-07-22 14:59:26 -04:00
3 changed files with 6 additions and 6 deletions

View file

@ -76,11 +76,7 @@
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this
#jack.enable = true;
# use the example session manager (no others are packaged yet so this is enabled by default,
# no need to redefine it in your config for now)
#media-session.enable = true;
jack.enable = true;
};
# Enable touchpad support (enabled default in most desktopManager).

View file

@ -1,7 +1,6 @@
{ config, pkgs, home-manager, nix-doom-emacs, ... }:
{
home.stateVersion = "23.05";
home.packages = with pkgs; [

View file

@ -12,4 +12,9 @@
initialPassword = "password";
shell = pkgs.fish;
};
environment.systemPackages = with pkgs; [
gnomeExtensions.caffeine
];
}