Working configuration - base config

This commit is contained in:
Sasza Stanczew 2026-02-10 15:49:02 +01:00
parent f051c4de99
commit 8ebcd6bc54
6 changed files with 13 additions and 5 deletions

View file

@ -30,6 +30,7 @@
nix-latitude = mk_system "x86_64-linux" "nix-latitude" [ nix-latitude = mk_system "x86_64-linux" "nix-latitude" [
./hosts/nix-latitude/configuration.nix ./hosts/nix-latitude/configuration.nix
./modules/plasma.nix ./modules/plasma.nix
./modules/3dmodel.nix
#./modules/network.nix #./modules/network.nix
#./modules/office.nix #./modules/office.nix
]; ];
@ -40,6 +41,7 @@
./modules/gaming.nix ./modules/gaming.nix
./modules/network.nix ./modules/network.nix
# ./modules/office.nix # ./modules/office.nix
./modules/3dmodel.nix
./modules/3dprint.nix ./modules/3dprint.nix
]; ];
}; };

7
modules/3dmodel.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, ... }: {
# paczki
environment.systemPackages = with pkgs; [
openscad-unstable
];
}

View file

@ -1,8 +1,7 @@
{ pkgs, ... }: { { pkgs, ... }: {
# paczki # paczki
users.users.sasza.packages = with pkgs; [ environment.systemPackages = with pkgs; [
orca-slicer orca-slicer
openscad-unstable
]; ];
} }

View file

@ -6,7 +6,7 @@
programs.steam.enable = true; programs.steam.enable = true;
# paczki # paczki
users.users.sasza.packages = with pkgs; [ environment.systemPackages = with pkgs; [
lutris lutris
]; ];

View file

@ -1,7 +1,7 @@
{ pkgs, ... }: { { pkgs, ... }: {
# paczki # paczki
users.users.sasza.packages = with pkgs; [ environment.systemPackages = with pkgs; [
eddie eddie
wireguard-tools wireguard-tools
qbittorrent qbittorrent

View file

@ -1,7 +1,7 @@
{ pkgs, ... }: { { pkgs, ... }: {
# paczki # paczki
users.users.sasza.packages = with pkgs; [ environment.systemPackages = with pkgs; [
libreoffice-fresh libreoffice-fresh
]; ];
} }