shuffle more things around.
This commit is contained in:
parent
5d5ca6ef1c
commit
ce3cc29a94
5
home/apps/telegram/telegram.nix
Normal file
5
home/apps/telegram/telegram.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ config, pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
tdesktop
|
||||
];
|
||||
}
|
7
home/apps/vivaldi/vivaldi.nix
Normal file
7
home/apps/vivaldi/vivaldi.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ config, pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
vivaldi
|
||||
vivaldi-ffmpeg-codecs
|
||||
vivaldi-widevine
|
||||
];
|
||||
}
|
6
home/bluetooth/bluetooth.nix
Normal file
6
home/bluetooth/bluetooth.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ config, lib, ... }:
|
||||
|
||||
{
|
||||
services.blueman-applet.enable = true;
|
||||
services.mpris-proxy.enable = true;
|
||||
}
|
1
home/dev/debugging.nix
Normal file
1
home/dev/debugging.nix
Normal file
|
@ -0,0 +1 @@
|
|||
{ pkgs, ... }: { home.packages = with pkgs; [ gdb lldb ]; }
|
1
home/dev/editors.nix
Normal file
1
home/dev/editors.nix
Normal file
|
@ -0,0 +1 @@
|
|||
{ pkgs, ... }: { home.packages = with pkgs; [ nano ]; }
|
3
home/dev/extra.nix
Normal file
3
home/dev/extra.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [ jq ripgrep fd pv tmux socat ];
|
||||
}
|
3
home/dev/info.nix
Normal file
3
home/dev/info.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [ neofetch inxi htop ];
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
{ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
home.packages = with pkgs; [
|
||||
curl
|
||||
wget
|
||||
dig
|
3
home/dev/vcs.nix
Normal file
3
home/dev/vcs.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [ gitAndTools.gitFull darcs subversion ];
|
||||
}
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
{ pkgs, ... }: { environment.systemPackages = with pkgs; [ gdb lldb ]; }
|
|
@ -1 +0,0 @@
|
|||
{ pkgs, ... }: { environment.systemPackages = with pkgs; [ nano ]; }
|
|
@ -1,3 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [ jq ripgrep fd pv tmux socat ];
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [ neofetch inxi htop ];
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [ git darcs subversion ];
|
||||
}
|
|
@ -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
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue