Rework common profile into module system
This commit is contained in:
parent
9d2e54547c
commit
9fdec35027
29 changed files with 288 additions and 214 deletions
|
@ -1,16 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
chvp.zfs.systemLinks = [
|
||||
{ path = "/var/lib/bluetooth"; type = "cache"; }
|
||||
];
|
||||
|
||||
hardware.bluetooth.enable = true;
|
||||
services.blueman.enable = true;
|
||||
hardware.pulseaudio.extraModules = [ pkgs.pulseaudio-modules-bt ];
|
||||
hardware.pulseaudio.package = pkgs.pulseaudioFull;
|
||||
|
||||
home-manager.users.charlotte = { ... }: {
|
||||
services.blueman-applet.enable = true;
|
||||
};
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
../modules/zfs.nix
|
||||
../configurations/direnv.nix
|
||||
../configurations/gnupg.nix
|
||||
../configurations/hledger.nix
|
||||
../configurations/locale.nix
|
||||
../configurations/mail.nix
|
||||
../configurations/neovim.nix
|
||||
../configurations/nix-index.nix
|
||||
../configurations/nix-store.nix
|
||||
../configurations/pass.nix
|
||||
../configurations/tmux.nix
|
||||
../configurations/users.nix
|
||||
];
|
||||
|
||||
home-manager.users.charlotte = { pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
moreutils
|
||||
pandoc
|
||||
texlive.combined.scheme-small
|
||||
unzip
|
||||
youtube-dl
|
||||
];
|
||||
};
|
||||
}
|
|
@ -10,17 +10,20 @@
|
|||
../configurations/dwarf-fortress.nix
|
||||
../configurations/firefox.nix
|
||||
../configurations/fonts.nix
|
||||
../configurations/gnupg.nix
|
||||
../configurations/hledger.nix
|
||||
../configurations/i3.nix
|
||||
../configurations/kernel.nix
|
||||
../configurations/kitty.nix
|
||||
../configurations/mail.nix
|
||||
../configurations/mime.nix
|
||||
../configurations/mounts.nix
|
||||
../configurations/mumble.nix
|
||||
../configurations/networkmanager.nix
|
||||
../configurations/pass.nix
|
||||
../configurations/sound.nix
|
||||
../configurations/steam.nix
|
||||
../configurations/sway.nix
|
||||
../configurations/syncthing.nix
|
||||
../configurations/steam.nix
|
||||
../configurations/teams.nix
|
||||
../configurations/themes.nix
|
||||
../configurations/virtualbox.nix
|
||||
|
@ -34,15 +37,20 @@
|
|||
google-chrome
|
||||
greenfoot
|
||||
libreoffice
|
||||
moreutils
|
||||
mpv
|
||||
okular
|
||||
pandoc
|
||||
pavucontrol
|
||||
ranger
|
||||
slurp
|
||||
sshfs
|
||||
texlive.combined.scheme-small
|
||||
ungoogled-chromium
|
||||
unzip
|
||||
wf-recorder
|
||||
wl-clipboard
|
||||
youtube-dl
|
||||
];
|
||||
programs.zsh.loginExtra = ''
|
||||
if [[ -z "$DISPLAY" ]] && [[ $(tty) = "/dev/tty1" ]]; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue