added homemandger directory
This commit is contained in:
parent
d9b0288868
commit
fccb78d1ff
3 changed files with 43 additions and 0 deletions
20
.hm-modules/home-manager.nix
Normal file
20
.hm-modules/home-manager.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
{
|
||||||
|
# https://github.com/arouzing/nix/blob/main/hm/sky/home.nix
|
||||||
|
home = {
|
||||||
|
username = "speccon18";
|
||||||
|
homeDirectory = "/home/speccon18";
|
||||||
|
stateVersion = "22.11";
|
||||||
|
};
|
||||||
|
direnv = {
|
||||||
|
enableZshIntegration = true;
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
starship = {
|
||||||
|
enable = true;
|
||||||
|
enableZshIntegration = true;
|
||||||
|
};
|
||||||
|
zsh = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
6
.modules/features/desktop/environments/wayfire.nix
Normal file
6
.modules/features/desktop/environments/wayfire.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
inputs.nixpkgs-wayland.packages.${system}.wayfire-unstable
|
||||||
|
];
|
||||||
|
}
|
||||||
17
.modules/services/pipewire.nix
Normal file
17
.modules/services/pipewire.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
# https://nixos.wiki/wiki/PipeWire
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
{
|
||||||
|
# Remove sound.enable or turn it off if you had it set previously, it seems to cause conflicts with pipewire
|
||||||
|
#sound.enable = false;
|
||||||
|
# rtkit is optional but recommended
|
||||||
|
security.rtkit.enable = true;
|
||||||
|
services.pipewire = {
|
||||||
|
enable = true;
|
||||||
|
alsa = {
|
||||||
|
enable = true;
|
||||||
|
support32Bit = true;
|
||||||
|
};
|
||||||
|
pulse.enable = true;
|
||||||
|
jack.enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue