Compare commits

..

5 Commits

Author SHA1 Message Date
c249b8fd28 Update configuration.nix 2024-06-17 22:18:02 -04:00
bde8767764 Add readme.md 2024-06-16 18:28:35 -04:00
038a090a08 Update configuration.nix 2024-06-16 18:19:32 -04:00
ff4ad7edcb Merge pull request 'Update configuration.nix' (#2) from testing into main
Reviewed-on: #2
2024-06-11 19:33:17 -04:00
7d522ccc01 Merge pull request 'testing' (#1) from testing into main
Reviewed-on: #1
2024-06-11 19:27:40 -04:00
2 changed files with 21 additions and 7 deletions

View File

@ -7,7 +7,7 @@
let
unstableTarball =
fetchTarball
https://github.com/NixOS/nixpkgs/archive/nixos-unstbale.tar.gz;
https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz;
in
@ -27,6 +27,7 @@ in
boot.loader.efi.canTouchEfiVariables = true;
#boot.loader.efi.efiSysMountPoint = "/boot/efi";
# appimage support
boot.binfmt.registrations.appimage = {
interpreter = "${pkgs.appimage-run}/bin/appimage-run";
recognitionType = "magic";
@ -36,7 +37,7 @@ in
};
# boot logo
#boot.plymouth.enable = true;
boot.plymouth.enable = true;
# ZRAM
zramSwap.enable = true;
@ -49,7 +50,7 @@ in
#boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
boot.kernelPackages = pkgs.linuxPackages_xanmod_stable;
boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback evdi ];
boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ];
networking.hostName = "vincents-hp"; # Define your hostname.
networking.networkmanager.enable = true;
@ -144,15 +145,12 @@ in
nixpkgs.config = {
packageOverrides = pkgs: with pkgs; {
stable = import unstableTarball {
unstable = import unstableTarball {
config = config.nixpkgs.config;
};
};
};
# ollama
services.ollama.enable = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment = {
@ -188,6 +186,7 @@ in
# podman
podman
docker-compose
distrobox
# package manager
wget
# web browser
@ -242,6 +241,9 @@ in
# schedualer
services.system76-scheduler.enable = true;
# ollama
services.ollama.enable = true;
# Enable the OpenSSH daemon.
services.openssh.enable = false;

12
readme.md Normal file
View File

@ -0,0 +1,12 @@
# readme
## download & install nixos
[https://nixos.org/download/](https://nixos.org/download/)
### install nixos with plasma 6
### after install
- reboot and git clone repo into home directory
- edit `configuration.nix`
- change hostname from "nixos"
- update keyboard layout if using anything else than standard US layout
- the run `bash setup.sh`