remove some redundant shell profiles

This commit is contained in:
Peder Bergebakken Sundt 2024-03-26 18:27:48 +01:00
parent a2a91ec43c
commit 4874cd5230
13 changed files with 28 additions and 50 deletions

View File

@ -260,7 +260,7 @@
hidpi = hw.common-hidpi; hidpi = hw.common-hidpi;
p1005 = ./hardware/printer/hp-laserjet-p1005.nix; p1005 = ./hardware/printer/hp-laserjet-p1005.nix;
au = ./profiles/auto-upgrade.nix; au = ./profiles/auto-upgrade.nix;
binfmt = ./profiles/shell/binfmt-emu.nix; binfmt = ./profiles/binfmt-emu.nix;
dns64 = { config, ... }: { dns64 = { config, ... }: {
networking.nameservers = [ "2001:700:1:11::2:51" ]; # dns64.uninett.no networking.nameservers = [ "2001:700:1:11::2:51" ]; # dns64.uninett.no
networking.networkmanager.enable = true; networking.networkmanager.enable = true;

View File

@ -12,9 +12,7 @@
../../users/pbsds ../../users/pbsds
../../users/daniel ../../users/daniel
../../profiles/shell/base.nix ../../profiles/shell.nix
../../profiles/shell/archives.nix
../../profiles/shell/nix-utils.nix
../../profiles/domeneshop-dyndns ../../profiles/domeneshop-dyndns
#../../profiles/code-remote #../../profiles/code-remote

View File

@ -16,9 +16,7 @@
../../users/pbsds ../../users/pbsds
../../profiles/shell/base.nix ../../profiles/shell.nix
../../profiles/shell/archives.nix
../../profiles/shell/nix-utils.nix
#../../profiles/domeneshop-dyndns #../../profiles/domeneshop-dyndns
]; ];

View File

@ -13,9 +13,7 @@
../../profiles/mounts/panorama-zfs.nix ../../profiles/mounts/panorama-zfs.nix
../../profiles/shell/base.nix ../../profiles/shell.nix
../../profiles/shell/archives.nix
../../profiles/shell/nix-utils.nix
../../profiles/domeneshop-dyndns ../../profiles/domeneshop-dyndns
#../../profiles/code-remote #../../profiles/code-remote

View File

@ -29,9 +29,7 @@
../../users/pbsds ../../users/pbsds
../../profiles/shell/base.nix ../../profiles/shell.nix
../../profiles/shell/archives.nix
../../profiles/shell/nix-utils.nix
#../../profiles/desktop/base.nix #../../profiles/desktop/base.nix
#../../profiles/desktop/gnome # configures gdm #../../profiles/desktop/gnome # configures gdm

View File

@ -23,9 +23,7 @@
#../../profiles/mounts/reidun-nfs.nix #../../profiles/mounts/reidun-nfs.nix
#../../profiles/mounts/meconium-nfs.nix #../../profiles/mounts/meconium-nfs.nix
../../profiles/shell/base.nix ../../profiles/shell.nix
../../profiles/shell/archives.nix
../../profiles/shell/nix-utils.nix
../../profiles/desktop/base.nix ../../profiles/desktop/base.nix
../../profiles/desktop/gnome # configures gdm ../../profiles/desktop/gnome # configures gdm

View File

@ -24,9 +24,7 @@
../../profiles/mounts/meconium-nfs.nix ../../profiles/mounts/meconium-nfs.nix
../../profiles/mounts/fridge-nfs.nix ../../profiles/mounts/fridge-nfs.nix
../../profiles/shell/base.nix ../../profiles/shell.nix
../../profiles/shell/archives.nix
../../profiles/shell/nix-utils.nix
../../profiles/desktop/base.nix ../../profiles/desktop/base.nix
../../profiles/desktop/gnome # configures gdm ../../profiles/desktop/gnome # configures gdm

View File

@ -19,9 +19,7 @@
../../profiles/mounts/meconium-zfs.nix ../../profiles/mounts/meconium-zfs.nix
../../profiles/mounts/fridge-nfs.nix ../../profiles/mounts/fridge-nfs.nix
../../profiles/shell/base.nix ../../profiles/shell.nix
../../profiles/shell/archives.nix
../../profiles/shell/nix-utils.nix
../../profiles/services/tmate-server.nix # opens port 42244 ../../profiles/services/tmate-server.nix # opens port 42244

View File

@ -33,9 +33,7 @@
../../profiles/mounts/reidun-nfs.nix ../../profiles/mounts/reidun-nfs.nix
../../profiles/mounts/meconium-nfs.nix ../../profiles/mounts/meconium-nfs.nix
../../profiles/shell/base.nix ../../profiles/shell.nix
../../profiles/shell/archives.nix
../../profiles/shell/nix-utils.nix
../../profiles/desktop/base.nix ../../profiles/desktop/base.nix
../../profiles/desktop/gnome # configures gdm ../../profiles/desktop/gnome # configures gdm

View File

@ -1,11 +1,11 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# base utils
lsof lsof
lshw lshw
file file
tmux tmux
#parallel # already provided by moreutils
pwgen pwgen
git git
#gh #gh
@ -16,7 +16,7 @@
gnused gnused
gnumake gnumake
coreutils-full coreutils-full
moreutils moreutils # includes 'parallel'
binutils binutils
diffutils diffutils
findutils findutils
@ -54,5 +54,22 @@
visidata visidata
sqlite sqlite
# archive
zip
unrar
unzip
atool
p7zip
bzip2
gzip
atool
# nix utils
nix-output-monitor
nix-top
nix-search-cli # nix-search
nix-diff
comma
]; ];
} }

View File

@ -1,13 +0,0 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
zip
unrar
unzip
atool
p7zip
bzip2
gzip
atool
];
}

View File

@ -1,10 +0,0 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
nix-output-monitor
nix-top
nix-search-cli # nix-search
nix-diff
comma
];
}