jt
/
conf
1
0
Fork 0

In proggress: Separating devstuff nixos config

This commit is contained in:
Jarkko Toivanen 2023-05-26 02:32:33 +03:00
parent 1ab4c53496
commit f9d01c122b
Signed by: jt
GPG Key ID: 9151B109B73ECAD5
2 changed files with 15 additions and 6 deletions

View File

@ -1,6 +1,7 @@
{ config, pkgs, ... }: {
imports = [ # Include the results of the hardware scan.
./hardware-configuration.nix
../devstuff.nix
];
fileSystems."/kovo1" = {
@ -62,7 +63,7 @@
'';
};
networking.hostName = "nixos";
networking.hostName = "alina";
networking.networkmanager.enable = true;
time.timeZone = "Europe/Helsinki";
i18n.defaultLocale = "fi_FI.UTF-8";
@ -243,6 +244,7 @@
wineWowPackages.stable
winetricks
heroic
runelite
libreoffice
nextcloud-client
helvum
@ -261,11 +263,6 @@
prismlauncher
mangohud
#vulkan-tools
git
rustup
rust-analyzer
cargo-cross
gcc
obs-studio
appimage-run
steam-run-native

12
nixos/devstuff.nix Normal file
View File

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
users.users.jt.packages = with pkgs; [
git
rustup
rust-analyzer
cargo-cross
gcc
pkg-config
gdb
];
}