shuffle more things around.

This commit is contained in:
ChaotiCryptidz 2021-12-26 14:21:54 +00:00
parent 5d5ca6ef1c
commit ce3cc29a94
17 changed files with 34 additions and 20 deletions

View file

@ -0,0 +1,5 @@
{ config, pkgs, ... }: {
home.packages = with pkgs; [
tdesktop
];
}

View file

@ -0,0 +1,7 @@
{ config, pkgs, ... }: {
home.packages = with pkgs; [
vivaldi
vivaldi-ffmpeg-codecs
vivaldi-widevine
];
}

View file

@ -0,0 +1,6 @@
{ config, lib, ... }:
{
services.blueman-applet.enable = true;
services.mpris-proxy.enable = true;
}

1
home/dev/debugging.nix Normal file
View file

@ -0,0 +1 @@
{ pkgs, ... }: { home.packages = with pkgs; [ gdb lldb ]; }

1
home/dev/editors.nix Normal file
View file

@ -0,0 +1 @@
{ pkgs, ... }: { home.packages = with pkgs; [ nano ]; }

3
home/dev/extra.nix Normal file
View file

@ -0,0 +1,3 @@
{ pkgs, ... }: {
home.packages = with pkgs; [ jq ripgrep fd pv tmux socat ];
}

3
home/dev/info.nix Normal file
View file

@ -0,0 +1,3 @@
{ pkgs, ... }: {
home.packages = with pkgs; [ neofetch inxi htop ];
}

View file

@ -1,5 +1,5 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
home.packages = with pkgs; [
curl
wget
dig

3
home/dev/vcs.nix Normal file
View file

@ -0,0 +1,3 @@
{ pkgs, ... }: {
home.packages = with pkgs; [ gitAndTools.gitFull darcs subversion ];
}

View file

@ -4,7 +4,6 @@
imports = with tree; [
users.chaoticryptidz
profiles.dev
profiles.gui
profiles.laptop
profiles.bluetooth
@ -20,12 +19,15 @@
config.home-manager.users.chaoticryptidz = {
imports = with tree; [
home.base
home.bluetooth
home.gui
home.gaming
home.dev
home.network_manager
home.sway
home.reversing
home.apps.vivaldi
home.apps.telegram
home.programming
home.programming.languages.go
home.programming.languages.nix

View file

@ -8,6 +8,7 @@ let
"profiles/*".functor.enable = true;
"users/*".functor.enable = true;
"home/*".functor.enable = true;
"home/apps/*".functor.enable = true;
"home/programming/languages/*".functor.enable = true;
};
};

View file

@ -1 +0,0 @@
{ pkgs, ... }: { environment.systemPackages = with pkgs; [ gdb lldb ]; }

View file

@ -1 +0,0 @@
{ pkgs, ... }: { environment.systemPackages = with pkgs; [ nano ]; }

View file

@ -1,3 +0,0 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ jq ripgrep fd pv tmux socat ];
}

View file

@ -1,3 +0,0 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ neofetch inxi htop ];
}

View file

@ -1,3 +0,0 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ git darcs subversion ];
}

View file

@ -1,10 +1,3 @@
{ config, pkgs, ... }: {
fonts.fonts = with pkgs; [ comic-neue comic-code ];
environment.systemPackages = with pkgs; [
tdesktop
vivaldi
vivaldi-ffmpeg-codecs
vivaldi-widevine
];
}