Working configuration - base config
This commit is contained in:
parent
f051c4de99
commit
8ebcd6bc54
6 changed files with 13 additions and 5 deletions
|
|
@ -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
7
modules/3dmodel.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
|
||||||
|
# paczki
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
openscad-unstable
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
@ -1,8 +1,7 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
|
|
||||||
# paczki
|
# paczki
|
||||||
users.users.sasza.packages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
orca-slicer
|
orca-slicer
|
||||||
openscad-unstable
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
|
|
||||||
# paczki
|
# paczki
|
||||||
users.users.sasza.packages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
libreoffice-fresh
|
libreoffice-fresh
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue