run nix fmt
This commit is contained in:
parent
e3368738e7
commit
3790812dbe
15 changed files with 423 additions and 424 deletions
|
@ -1,5 +1,3 @@
|
|||
{...}:
|
||||
|
||||
{
|
||||
{...}: {
|
||||
services.flatpak.enable = true;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
{pkgs, ...}: {
|
||||
hardware.opengl.extraPackages = with pkgs; [
|
||||
intel-compute-runtime
|
||||
mesa_drivers
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
{pkgs, ...}: {
|
||||
fonts = {
|
||||
enableDefaultFonts = true;
|
||||
enableGhostscriptFonts = true;
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
{...}:
|
||||
|
||||
{
|
||||
{...}: {
|
||||
services = {
|
||||
xserver = {
|
||||
desktopManager.gnome.enable = true;
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
{...}: {
|
||||
sound.enable = true;
|
||||
hardware.pulseaudio.enable = false;
|
||||
security.rtkit.enable = true;
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
{pkgs, ...}: {
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
autorun = true;
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
{...}:
|
||||
|
||||
{
|
||||
{...}: {
|
||||
virtualisation.docker.enable = true;
|
||||
}
|
||||
|
|
|
@ -13,4 +13,3 @@
|
|||
'';
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
{pkgs, ...}: {
|
||||
users.users.relms = {
|
||||
isNormalUser = true;
|
||||
description = "Daryl Ronningen";
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
{pkgs, ...}:
|
||||
|
||||
{
|
||||
{pkgs, ...}: {
|
||||
boot = {
|
||||
loader = {
|
||||
grub = {
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
networking.hostName = "skynet";
|
||||
|
||||
services.fprintd.enable = true;
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
{ config, lib, pkgs, modulesPath, ... }:
|
||||
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
modulesPath,
|
||||
...
|
||||
}: {
|
||||
imports = [(modulesPath + "/installer/scan/not-detected.nix")];
|
||||
|
||||
boot = {
|
||||
|
@ -23,7 +27,6 @@
|
|||
};
|
||||
};
|
||||
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
{pkgs, ...}: {
|
||||
wsl = {
|
||||
enable = true;
|
||||
wslConf.automount.root = "/mnt";
|
||||
|
|
13
flake.nix
13
flake.nix
|
@ -18,7 +18,16 @@
|
|||
nixos-wsl.inputs.nixpkgs.follows = "nixpkgs";
|
||||
nixos-wsl.inputs.flake-utils.follows = "utils";
|
||||
};
|
||||
outputs = { self, nixpkgs, utils, home-manager, neovim, nur, nixos-wsl, ... }: let
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
utils,
|
||||
home-manager,
|
||||
neovim,
|
||||
nur,
|
||||
nixos-wsl,
|
||||
...
|
||||
}: let
|
||||
modules = {
|
||||
home = [
|
||||
./users/relms/home.nix
|
||||
|
@ -83,5 +92,7 @@
|
|||
|
||||
modules = modules.home;
|
||||
};
|
||||
|
||||
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.alejandra;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
{ lib, config, pkgs, ... }:
|
||||
|
||||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
# Home Manager needs a bit of information about you and the
|
||||
# paths it should manage.
|
||||
home.username = "relms";
|
||||
|
|
Reference in a new issue