files (such as firefox/spotify-qt+librespot), create utils for reusable function library
27 lines
427 B
Nix
27 lines
427 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./common/nvidia.nix
|
|
];
|
|
|
|
boot = {
|
|
loader = {
|
|
systemd-boot.enable = true;
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
};
|
|
|
|
networking.hostName = "walnut-nixos";
|
|
|
|
programs = {
|
|
xwayland.enable = true;
|
|
sway = {
|
|
enable = true;
|
|
package = pkgs.swayfx;
|
|
extraOptions = [
|
|
"--unsupported-gpu"
|
|
];
|
|
};
|
|
};
|
|
}
|