mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2025-06-15 16:54:36 +02:00
several small adjustments
This commit is contained in:
parent
62bfab8427
commit
76b06e0530
5 changed files with 20 additions and 18 deletions
|
@ -13,10 +13,7 @@
|
|||
extraSpecialArgs = {
|
||||
inherit inputs;
|
||||
};
|
||||
|
||||
sharedModules = [
|
||||
inputs.distrobox4nix.homeManagerModule
|
||||
];
|
||||
backupFileExtension = ".bak";
|
||||
|
||||
users.thilo = {
|
||||
imports = [ ./../../home-manager/modules/machine.nix ];
|
||||
|
@ -49,7 +46,7 @@
|
|||
];
|
||||
|
||||
programs.distrobox = {
|
||||
enable = true;
|
||||
enable = lib.mkForce true;
|
||||
containers = {
|
||||
arch = {
|
||||
image = "arch-toolbox";
|
||||
|
|
|
@ -1,7 +1,12 @@
|
|||
# Edit this configuration file to define what should be installed on
|
||||
# your system. Help is available in the configuration.nix(5) man page
|
||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||
{ pkgs, inputs, ... }:
|
||||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
imports = [
|
||||
|
@ -161,10 +166,16 @@
|
|||
hardware.bluetooth.enable = true;
|
||||
hardware.bluetooth.powerOnBoot = true;
|
||||
|
||||
jovian = {
|
||||
steam = {
|
||||
enable = true;
|
||||
user = "thilo";
|
||||
specialisation = {
|
||||
game-console.configuration = {
|
||||
services.displayManager.sddm.enable = lib.mkForce false;
|
||||
jovian = {
|
||||
steam = {
|
||||
autoStart = true;
|
||||
enable = true;
|
||||
user = "thilo";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -176,6 +187,7 @@
|
|||
|
||||
environment.systemPackages = with pkgs; [
|
||||
kdePackages.skanpage
|
||||
qt5.qtwayland
|
||||
];
|
||||
|
||||
services.resolved = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue