Skip to content

Commit

Permalink
fix(wip): wip
Browse files Browse the repository at this point in the history
  • Loading branch information
elythh committed Mar 28, 2024
1 parent 5179e21 commit 2771e8a
Show file tree
Hide file tree
Showing 87 changed files with 687 additions and 692 deletions.
1 change: 1 addition & 0 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@

- **[Home](../home):** [Home-Manager](https://github.com/nix-community/home-manager) configurations.
- **[Hosts](../hosts):** Host-specific configurations.
- **[Modules](../modules):** Every NixOS and Home-manager modules
- **[derivs](../derivs/):** Custom additional packages.

## :bulb: Acknowledgments
Expand Down
143 changes: 0 additions & 143 deletions home/gwen/conf/shell/zsh/default.nix

This file was deleted.

96 changes: 0 additions & 96 deletions home/gwen/conf/term/kitty/default.nix

This file was deleted.

33 changes: 5 additions & 28 deletions home/gwen/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,40 +15,17 @@
home.sessionVariables.EDITOR = "nvim";

imports = [
../shared/hm
./options.nix
#./style.nix

./misc/ewwags.nix
./misc/obsidian.nix
# ./conf/ui/wayland/swayfx
./conf/ui/wayland/hyprland
#./conf/utils/swaync

inputs.anyrun.homeManagerModules.default
# Importing Configurations
# ./conf/music/mpd
# ./conf/music/ncmp/hypr.nix
./conf/music/spicetify
./conf/shell/zsh
#./conf/term/kitty
#./conf/term/foot
./conf/term/wezterm
./conf/term/zellij
./conf/utils/firefox
./conf/utils/gpg-agent
./conf/utils/k9s
./conf/utils/lazygit
./conf/utils/lf
./conf/utils/rofi
./conf/utils/sss
./conf/utils/gitui
./misc/neofetch.nix
./misc/vencord.nix
./misc/yamlfmt.nix
# Bin files
../shared/bin/default.nix
../../modules/home
../../modules/home/opt/wayland/hyprland
];
wezterm.enable = true;
zsh.enable = true;

home = {
packages = with pkgs; [
(pkgs.callPackage ../../derivs/discordo.nix {})
Expand Down
64 changes: 1 addition & 63 deletions hosts/hp/configuration.nix
Original file line number Diff line number Diff line change
@@ -1,69 +1,7 @@
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
../shared
../../modules/nixos
];

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
};
services = {
logind = {
powerKey = "suspend";
lidSwitch = "suspend";
lidSwitchExternalPower = "lock";
};
};
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;

networking.hostName = "hp"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.

# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";

# Enable networking
networking.networkmanager.enable = true;

# Set your time zone.
time.timeZone = "Europe/Paris";

# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";

i18n.extraLocaleSettings = {
LC_ADDRESS = "fr_FR.UTF-8";
LC_IDENTIFICATION = "fr_FR.UTF-8";
LC_MEASUREMENT = "fr_FR.UTF-8";
LC_MONETARY = "fr_FR.UTF-8";
LC_NAME = "fr_FR.UTF-8";
LC_NUMERIC = "fr_FR.UTF-8";
LC_PAPER = "fr_FR.UTF-8";
LC_TELEPHONE = "fr_FR.UTF-8";
LC_TIME = "fr_FR.UTF-8";
};

# Configure keymap in X11
services.xserver.xkb = {
layout = "us";
variant = "";
};

# Define a user account. Don't forget to set a password with ‘passwd’.
users.users.gwen = {
isNormalUser = true;
description = "gwen";
extraGroups = ["networkmanager" "wheel"];
};

# Allow unfree packages
nixpkgs.config.allowUnfree = true;

system.stateVersion = "23.11"; # Did you read the comment?
}
Loading

0 comments on commit 2771e8a

Please sign in to comment.