Compare commits

..

No commits in common. "534e7f74292cbc5396f4b3fa70377a676e458ab4" and "4ea1acc73dd4c69ca5b18a672d53f6b6d41839c1" have entirely different histories.

2 changed files with 7 additions and 13 deletions

View file

@ -1,7 +1,4 @@
# Configure
# Usefull commands
## Configure
```bash ```bash
nixos-rebuild switch --flake flake_path_directory#hostname nixos-rebuild switch --flake flake_path_directory#hostname
@ -11,7 +8,11 @@ nixos-rebuild switch --flake flake_path_directory#hostname
nix flake update --extra-experimental-features "nix-command flakes" nix flake update --extra-experimental-features "nix-command flakes"
``` ```
## Clean system # Usefull link
- https://api.github.com/rate_limit
# Clean system
List all profiles List all profiles
```bash ```bash
@ -28,13 +29,6 @@ Clean up all useless store from old profiles
sudo nix store gc --debug sudo nix store gc --debug
``` ```
# Usefull links
- https://api.github.com/rate_limit
- https://hydra.nixos.org/job/nixos/trunk-combined/tested#tabs-constituents
- https://nixpk.gs/pr-tracker.html
- https://mobile.nixos.org/
# Sources # Sources
- https://github.com/ryan4yin/nix-config/tree/v0.0.2 - https://github.com/ryan4yin/nix-config/tree/v0.0.2

View file

@ -6,5 +6,5 @@
# Enable the KDE Plasma Desktop Environment. # Enable the KDE Plasma Desktop Environment.
services.xserver.displayManager.sddm.enable = true; services.xserver.displayManager.sddm.enable = true;
services.xserver.displayManager.defaultSession = "plasmawayland"; services.xserver.displayManager.defaultSession = "plasmawayland";
services.xserver.desktopManager.plasma6.enable = true; services.xserver.desktopManager.plasma5.enable = true;
} }