Updated carbon config to reuse custom modules
Also cleaned up system packages in both gospel and carbon systems.
This commit is contained in:
parent
a21e09f0a9
commit
58118e7ab8
|
@ -13,13 +13,21 @@
|
||||||
./vpn.nix
|
./vpn.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
aa = {
|
||||||
|
nix.enable = true;
|
||||||
|
|
||||||
# Make ready for nix flakes
|
suites.desktop.enable = true;
|
||||||
nix.package = pkgs.nixVersions.stable;
|
suites.gaming.enable = true;
|
||||||
nix.extraOptions = ''
|
|
||||||
experimental-features = nix-command flakes
|
tools.git.enable = true;
|
||||||
'';
|
tools.zsh.enable = true;
|
||||||
|
tools.exa.enable = true;
|
||||||
|
|
||||||
|
apps.neovim.enable = true;
|
||||||
|
apps.tmux.enable = true;
|
||||||
|
|
||||||
|
services.printing.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
hostName = "carbon"; # Define your hostname.
|
hostName = "carbon"; # Define your hostname.
|
||||||
|
@ -88,15 +96,10 @@
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
git
|
|
||||||
vim_configurable # Using this instead of vim for python3 support
|
|
||||||
wget
|
wget
|
||||||
firefox
|
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
stow
|
stow
|
||||||
tmux
|
|
||||||
zsh
|
zsh
|
||||||
home-manager
|
|
||||||
sanoid
|
sanoid
|
||||||
killall
|
killall
|
||||||
usbutils
|
usbutils
|
||||||
|
|
|
@ -61,9 +61,7 @@
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
|
||||||
wget
|
wget
|
||||||
git
|
|
||||||
killall
|
killall
|
||||||
usbutils
|
usbutils
|
||||||
pavucontrol
|
pavucontrol
|
||||||
|
|
Loading…
Reference in a new issue