added wm installations

This commit is contained in:
2024-08-13 19:42:30 +09:00
parent ae59ef84f8
commit 043c527b64
15 changed files with 142 additions and 43 deletions

View File

@@ -1,3 +1,5 @@
# nixos-dotfiles # nixos-dotfiles
dotfiles for nixos dotfiles for nixos
referenced heavily on [librephoenix's nixos-config](https://github.com/librephoenix/nixos-config).

23
flake.lock generated
View File

@@ -7,16 +7,16 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1720042825, "lastModified": 1723399884,
"narHash": "sha256-A0vrUB6x82/jvf17qPCpxaM+ulJnD8YZwH9Ci0BsAzE=", "narHash": "sha256-97wn0ihhGqfMb8WcUgzzkM/TuAxce2Gd20A8oiruju4=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "e1391fb22e18a36f57e6999c7a9f966dc80ac073", "rev": "086f619dd991a4d355c07837448244029fc2d9ab",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-community", "owner": "nix-community",
"ref": "release-24.05", "ref": "master",
"repo": "home-manager", "repo": "home-manager",
"type": "github" "type": "github"
} }
@@ -39,18 +39,17 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1723282977, "lastModified": 1723362943,
"narHash": "sha256-oTK91aOlA/4IsjNAZGMEBz7Sq1zBS0Ltu4/nIQdYDOg=", "narHash": "sha256-dFZRVSgmJkyM0bkPpaYRtG/kRMRTorUIDj8BxoOt1T4=",
"owner": "nixos", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "a781ff33ae258bbcfd4ed6e673860c3e923bf2cc", "rev": "a58bc8ad779655e790115244571758e8de055e3d",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "id": "nixpkgs",
"ref": "nixos-24.05", "ref": "nixos-unstable",
"repo": "nixpkgs", "type": "indirect"
"type": "github"
} }
}, },
"root": { "root": {

View File

@@ -2,8 +2,8 @@
description = "kenryuS nixos configurations/dotfiles"; description = "kenryuS nixos configurations/dotfiles";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-24.05"; nixpkgs.url = "nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager/release-24.05"; home-manager.url = "github:nix-community/home-manager/master";
home-manager.inputs.nixpkgs.follows = "nixpkgs"; home-manager.inputs.nixpkgs.follows = "nixpkgs";
nixos-hardware.url = "github:NixOS/nixos-hardware/master"; nixos-hardware.url = "github:NixOS/nixos-hardware/master";
}; };

View File

@@ -13,6 +13,8 @@
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs.config.allowUnfree = true;
i18n.defaultLocale = systemSettings.locale; i18n.defaultLocale = systemSettings.locale;
i18n.extraLocaleSettings = { i18n.extraLocaleSettings = {
LC_ADDRESS = systemSettings.locale; LC_ADDRESS = systemSettings.locale;

View File

@@ -1,7 +1,3 @@
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
@@ -11,41 +7,25 @@
../base.nix ../base.nix
../../system/services/cups.nix ../../system/services/cups.nix
../../system/services/ssh.nix ../../system/services/ssh.nix
../../system/services/polkit.nix
../../system/hardware/kernel.nix ../../system/hardware/kernel.nix
../../system/hardware/nvidia.nix
../../system/hardware/opengl.nix
../../system/hardware/bluetooth.nix
../../system/wm/sddm.nix
]; ];
# Use the systemd-boot EFI boot loader. # Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
# Configure keymap in X11
# services.xserver.xkb.layout = "us";
# services.xserver.xkb.options = "eurosign:e,caps:escape";
# Open ports in the firewall. # Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ]; # networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether. # Or disable the firewall altogether.
# networking.firewall.enable = false; # networking.firewall.enable = false;
# This option defines the first version of NixOS you have installed on this particular machine, system.stateVersion = "24.05"; # Did you read the changelog?
# and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.
#
# Most users should NEVER change this value after the initial install, for any reason,
# even if you've upgraded your system to a new NixOS release.
#
# This value does NOT affect the Nixpkgs version your packages and OS are pulled from,
# so changing it will NOT upgrade your system - see https://nixos.org/manual/nixos/stable/#sec-upgrading for how
# to actually do that.
#
# This value being lower than the current NixOS release does NOT mean your system is
# out of date, out of support, or vulnerable.
#
# Do NOT change this value unless you have manually inspected all the changes it would make to your configuration,
# and migrated your data accordingly.
#
# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
system.stateVersion = "24.05"; # Did you read the comment?
} }

View File

@@ -1,4 +1,13 @@
{ ... }: { ... }:
{ {
hardware.pulseaudio.enable = true; #hardware.pulseaudio.enable = true;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
};
} }

View File

@@ -0,0 +1,12 @@
{ config, lib, pkgs, ... }:
{
services.xserver.videoDrivers = [ "nvidia" ];
hardware.nvidia = {
modesetting.enable = true;
powerManagement.enable = false;
powerManagement.finegrained = false;
open = true;
nvidiaSettings = true;
};
}

View File

@@ -0,0 +1,4 @@
{ pkgs, lib, config, ... }:
{
security.polkit.enable = true;
}

9
system/wm/dbus.nix Normal file
View File

@@ -0,0 +1,9 @@
{ pkgs, ... }:
{
services.dbus = {
enable = true;
packages = [ pkgs.dconf ];
};
programs.dconf.enable = true;
}

8
system/wm/fonts.nix Normal file
View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
fonts.packages = with pkgs; [
_0xproto
ipafont
takao
];
}

View File

@@ -0,0 +1,4 @@
{ ... }:
{
services.gnome.gnome-keyring.enable = true;
}

30
system/wm/sddm.nix Normal file
View File

@@ -0,0 +1,30 @@
{ config, pkgs, ... }:
{
imports = [
./fonts.nix
./dbus.nix
./gnome-keyring.nix
./xmonad.nix
./sway.nix
];
environment.systemPackages = with pkgs; [
wayland
];
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
package = pkgs.sddm;
};
services.xserver = {
enable = true;
xkb = {
layout = "us";
variant = "";
options = "";
};
excludePackages = [ pkgs.xterm ];
};
}

12
system/wm/sway.nix Normal file
View File

@@ -0,0 +1,12 @@
{ pkgs, lib, config, ... }:
{
imports = [
./gnome-keyring.nix
./dbus.nix
];
programs.sway = {
enable = true;
wrapperFeatures.gtk = true;
};
}

21
system/wm/x11.nix Normal file
View File

@@ -0,0 +1,21 @@
{ pkgs, ... }:
{
imports = [
./fonts.nix
./dbus.nix
./gnome-keyring.nix
];
services.xserver = {
enable = true;
layout = "us";
xkbVariant = "";
xkbOptions = "";
excludePackages = [ pkgs.xterm ];
displayManager.sddm = {
enable = true;
wayland.enable = false;
package = pkgs.sddm;
};
};
}

7
system/wm/xmonad.nix Normal file
View File

@@ -0,0 +1,7 @@
{ ... }:
{
services.xserver.windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
};
}