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, ... }: {
|
||||
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
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