In proggress: Separating devstuff nixos config
This commit is contained in:
parent
1ab4c53496
commit
f9d01c122b
2 changed files with 15 additions and 6 deletions
|
@ -1,6 +1,7 @@
|
||||||
{ config, pkgs, ... }: {
|
{ config, pkgs, ... }: {
|
||||||
imports = [ # Include the results of the hardware scan.
|
imports = [ # Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
../devstuff.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
fileSystems."/kovo1" = {
|
fileSystems."/kovo1" = {
|
||||||
|
@ -62,7 +63,7 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.hostName = "nixos";
|
networking.hostName = "alina";
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
time.timeZone = "Europe/Helsinki";
|
time.timeZone = "Europe/Helsinki";
|
||||||
i18n.defaultLocale = "fi_FI.UTF-8";
|
i18n.defaultLocale = "fi_FI.UTF-8";
|
||||||
|
@ -243,6 +244,7 @@
|
||||||
wineWowPackages.stable
|
wineWowPackages.stable
|
||||||
winetricks
|
winetricks
|
||||||
heroic
|
heroic
|
||||||
|
runelite
|
||||||
libreoffice
|
libreoffice
|
||||||
nextcloud-client
|
nextcloud-client
|
||||||
helvum
|
helvum
|
||||||
|
@ -261,11 +263,6 @@
|
||||||
prismlauncher
|
prismlauncher
|
||||||
mangohud
|
mangohud
|
||||||
#vulkan-tools
|
#vulkan-tools
|
||||||
git
|
|
||||||
rustup
|
|
||||||
rust-analyzer
|
|
||||||
cargo-cross
|
|
||||||
gcc
|
|
||||||
obs-studio
|
obs-studio
|
||||||
appimage-run
|
appimage-run
|
||||||
steam-run-native
|
steam-run-native
|
||||||
|
|
12
nixos/devstuff.nix
Normal file
12
nixos/devstuff.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
users.users.jt.packages = with pkgs; [
|
||||||
|
git
|
||||||
|
rustup
|
||||||
|
rust-analyzer
|
||||||
|
cargo-cross
|
||||||
|
gcc
|
||||||
|
pkg-config
|
||||||
|
gdb
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue