1
This commit is contained in:
2022-07-26 14:19:28 +02:00
parent f54f6121ee
commit a71833935f
2 changed files with 9 additions and 1 deletions

View File

@ -19,6 +19,7 @@
emacs-overlay.url = "github:nix-community/emacs-overlay";
nur.url = "github:nix-community/NUR";
# nixvim.url = "github:pta2002/nixvim";
musnix.url = "github:musnix/musnix";
};
# Outputs is a function that takes the inputs as arguments.
@ -55,6 +56,8 @@
# >> Main NixOS configuration file <<
modules = [
inputs.musnix.nixosModules.musnix
# TODO: Modularize
./nixos/configuration.nix
./nixos/configuration-desktop.nix

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ config, lib, pkgs, musnix, ... }:
{
imports = [
@ -8,6 +8,11 @@
networking.hostName = "nixinator"; # Define your hostname.
musnix = {
enable = true;
# musnix.soundcardPciId = ;
};
services.xserver = {
# Configure keymap in X11
layout = "us";