Inital commit
This commit is contained in:
58
hosts/default/configuration.nix
Normal file
58
hosts/default/configuration.nix
Normal file
@@ -0,0 +1,58 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
|
||||
imports = [
|
||||
../../modules/nixos/nixpkgs.nix
|
||||
../../modules/nixos/bootloader.nix
|
||||
../../modules/nixos/hardware.nix
|
||||
../../modules/nixos/nvidia.nix
|
||||
../../modules/nixos/i18n.nix
|
||||
../../modules/nixos/main-user.nix
|
||||
../../modules/nixos/network.nix
|
||||
../../modules/nixos/programs.nix
|
||||
./packages.nix
|
||||
]
|
||||
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
|
||||
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
|
||||
localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers
|
||||
};
|
||||
|
||||
services.flatpak.enable = true;
|
||||
services.flatpak.remotes = [
|
||||
{
|
||||
name = "flathub";
|
||||
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
|
||||
};
|
||||
{
|
||||
name = "sober";
|
||||
location = "https://sober.vinegarhq.org/repo/"
|
||||
}
|
||||
];
|
||||
|
||||
services.flatpak.packages = [
|
||||
{ appId = "org.vinegarhq.Sober"; origin = "sober"; }
|
||||
];
|
||||
|
||||
programs.hyprland = {
|
||||
# Install the packages from nixpkgs
|
||||
enable = true;
|
||||
# Whether to enable XWayland
|
||||
xwayland.enable = true;
|
||||
};
|
||||
|
||||
main-user.userName = "ocbwoy3";
|
||||
main-user.realName = "OCbwoy3";
|
||||
main-user.packages = with pkgs; [
|
||||
brave
|
||||
prismlauncher
|
||||
vesktop
|
||||
];
|
||||
|
||||
catppuccin.enable = true;
|
||||
catppuccin.flavor = "mocha";
|
||||
|
||||
}
|
||||
88
hosts/default/packages.nix
Normal file
88
hosts/default/packages.nix
Normal file
@@ -0,0 +1,88 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
|
||||
fonts.packages = with pkgs; [
|
||||
noto-fonts
|
||||
noto-fonts-cjk-sans
|
||||
noto-fonts-emoji
|
||||
monaspace
|
||||
nerdfonts
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
nix-direnv
|
||||
unzip
|
||||
ifuse
|
||||
w3m
|
||||
imagemagick
|
||||
alacritty
|
||||
libimobiledevice
|
||||
catppuccin-sddm
|
||||
vim
|
||||
microsoft-edge
|
||||
direnv
|
||||
gnome.nautilus
|
||||
kdePackages.dolphin
|
||||
kdePackages.kservice
|
||||
qpwgraph
|
||||
wget
|
||||
git
|
||||
neofetch
|
||||
vscode
|
||||
nodejs
|
||||
bun
|
||||
(python3.withPackages (subpkgs: with subpkgs; [
|
||||
requests
|
||||
pypresence
|
||||
]))
|
||||
wrangler
|
||||
thefuck
|
||||
fontforge
|
||||
xclip
|
||||
fontforge-gtk
|
||||
deno
|
||||
wofi
|
||||
waybar
|
||||
dunst
|
||||
hyprlock
|
||||
swww
|
||||
swappy
|
||||
slurp
|
||||
grim
|
||||
wl-clipboard
|
||||
github-cli
|
||||
cliphist
|
||||
pywal
|
||||
pavucontrol
|
||||
polkit
|
||||
polkit-kde-agent
|
||||
wlogout
|
||||
libnotify
|
||||
killall
|
||||
networkmanagerapplet
|
||||
blueman
|
||||
arrpc
|
||||
playerctl
|
||||
obs-studio
|
||||
mangohud
|
||||
jq
|
||||
github-cli
|
||||
file
|
||||
nwg-look
|
||||
rhythmbox
|
||||
hyprpolkitagent
|
||||
|
||||
catppuccin-cursors.mochaLavender
|
||||
|
||||
# important
|
||||
glib
|
||||
openssl
|
||||
nss
|
||||
glibc # C LIBRARY DO NOT REMOVE VERY IMPORTANT
|
||||
gobject-introspection
|
||||
gimp
|
||||
mpv
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user