added way edges properly plus screenshots
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
inputs.walker.nixosModules.default
|
||||
];
|
||||
|
||||
# Allow Nix command and flakes (ofc)
|
||||
# Allow Nix command and flakes (ofc)
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
|
||||
# Allow unfree packages
|
||||
@@ -37,7 +37,7 @@
|
||||
enable = true;
|
||||
theme = "catppuccin-mocha";
|
||||
themePackages = with pkgs; [
|
||||
# By default we would install all themes
|
||||
# By default we would install all themes
|
||||
(catppuccin-plymouth.override {
|
||||
variant = "mocha";
|
||||
})
|
||||
@@ -48,14 +48,14 @@
|
||||
# Use latest kernel.
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
|
||||
# Networking settings
|
||||
# Networking settings
|
||||
networking.hostName = "mobile02"; # Define your hostname.
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
# Enable bluetooth
|
||||
# Enable bluetooth
|
||||
hardware.bluetooth.enable = true;
|
||||
|
||||
# Opengl and vulkan
|
||||
# Opengl and vulkan
|
||||
hardware.graphics = {
|
||||
enable = true;
|
||||
extraPackages = with pkgs; [
|
||||
@@ -64,10 +64,10 @@
|
||||
];
|
||||
};
|
||||
|
||||
# Set your time zone.
|
||||
# Set your time zone.
|
||||
time.timeZone = "Europe/London";
|
||||
|
||||
# Locale
|
||||
# Locale
|
||||
i18n.defaultLocale = "en_GB.UTF-8";
|
||||
i18n.extraLocaleSettings = {
|
||||
LC_ADDRESS = "en_GB.UTF-8";
|
||||
@@ -81,7 +81,7 @@
|
||||
LC_TIME = "en_GB.UTF-8";
|
||||
};
|
||||
|
||||
# Windowing Systems
|
||||
# Windowing Systems
|
||||
services.xserver.enable = true;
|
||||
|
||||
services.displayManager.sddm = {
|
||||
@@ -93,14 +93,14 @@
|
||||
programs.hyprland.enable = true;
|
||||
security.polkit.enable = true;
|
||||
|
||||
# Keymap
|
||||
# Keymap
|
||||
services.xserver.xkb = {
|
||||
layout = "gb";
|
||||
variant = "";
|
||||
};
|
||||
console.keyMap = "uk";
|
||||
|
||||
# Pipewire
|
||||
# Pipewire
|
||||
services.pulseaudio.enable = false;
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
@@ -110,17 +110,17 @@
|
||||
pulse.enable = true;
|
||||
};
|
||||
|
||||
# Local User
|
||||
# Local User
|
||||
users.users.user01 = {
|
||||
isNormalUser = true;
|
||||
shell = pkgs.zsh;
|
||||
description = "user01";
|
||||
extraGroups = [ "input" "bluetooth" "networkmanager" "docker" "wheel" ];
|
||||
packages = with pkgs; [
|
||||
# Ricing
|
||||
# Ricing
|
||||
bibata-cursors
|
||||
catppuccin-gtk
|
||||
(builtins.getFlake "/etc/nixos/way-edges").packages.${pkgs.system}.default
|
||||
inputs.way-edges.packages.${pkgs.system}.way-edges
|
||||
waybar
|
||||
hyprlock
|
||||
swaynotificationcenter
|
||||
@@ -129,8 +129,9 @@
|
||||
wpaperd
|
||||
kando
|
||||
oh-my-posh
|
||||
grimblast
|
||||
|
||||
# Terminal
|
||||
# Terminal
|
||||
carapace
|
||||
kitty
|
||||
github-cli
|
||||
@@ -150,13 +151,13 @@
|
||||
lazygit
|
||||
tailscale
|
||||
|
||||
# Thunar stuff
|
||||
# Thunar stuff
|
||||
xfce.thunar
|
||||
xfce.thunar-volman
|
||||
xfce.thunar-vcs-plugin
|
||||
xfce.thunar-archive-plugin
|
||||
|
||||
# Apps
|
||||
# Apps
|
||||
pavucontrol
|
||||
firefox
|
||||
tor-browser
|
||||
@@ -198,7 +199,7 @@
|
||||
services.openssh.enable = true;
|
||||
services.elephant.enable = true;
|
||||
|
||||
# Fonts
|
||||
# Fonts
|
||||
fonts.packages = with pkgs; [
|
||||
nerd-fonts.fira-mono
|
||||
];
|
||||
@@ -206,14 +207,14 @@
|
||||
fonts.fontconfig.defaultFonts.serif = [ "Fira Mono Nerd Font" ];
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
||||
# Catppuccin sddm theme
|
||||
# Catppuccin sddm theme
|
||||
(pkgs.catppuccin-sddm.override {
|
||||
flavor = "mocha";
|
||||
font = "Fira Mono Nerd Font";
|
||||
fontSize = "11";
|
||||
background = null;
|
||||
})
|
||||
# Terminal things
|
||||
# Terminal things
|
||||
(pkgs.symlinkJoin {
|
||||
name = "nvim-with-lsp";
|
||||
paths = [ pkgs.neovim ];
|
||||
@@ -237,21 +238,21 @@
|
||||
unzip
|
||||
python310 # Its python like come on
|
||||
|
||||
# Graphics Drivers
|
||||
# Graphics Drivers
|
||||
mesa
|
||||
vulkan-tools
|
||||
|
||||
# FileSystem Dependancies
|
||||
# FileSystem Dependancies
|
||||
gvfs
|
||||
|
||||
# C copmpiler
|
||||
# C copmpiler
|
||||
clang
|
||||
|
||||
# XDG Desktop Portal Etc
|
||||
# XDG Desktop Portal Etc
|
||||
xdg-desktop-portal
|
||||
xdg-desktop-portal-hyprland
|
||||
|
||||
# Other things (from gnome)
|
||||
# Other things (from gnome)
|
||||
glib
|
||||
gnutls
|
||||
appimage-run
|
||||
@@ -259,7 +260,7 @@
|
||||
gsettings-desktop-schemas
|
||||
];
|
||||
|
||||
# The comment
|
||||
# The comment
|
||||
system.stateVersion = "25.05"; # Did you read the comment?
|
||||
|
||||
}
|
||||
|
||||
59
flake.lock
generated
59
flake.lock
generated
@@ -98,6 +98,22 @@
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs_5": {
|
||||
"locked": {
|
||||
"lastModified": 1761597516,
|
||||
"narHash": "sha256-wxX7u6D2rpkJLWkZ2E932SIvDJW8+ON/0Yy8+a5vsDU=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "daf6dc47aa4b44791372d6139ab7b25269184d55",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nixos",
|
||||
"ref": "nixos-25.05",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"pinned-nixpkgs": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
@@ -120,7 +136,29 @@
|
||||
"chataigne": "chataigne",
|
||||
"elephant": "elephant",
|
||||
"nixpkgs": "nixpkgs_3",
|
||||
"walker": "walker"
|
||||
"walker": "walker",
|
||||
"way-edges": "way-edges"
|
||||
}
|
||||
},
|
||||
"rust-overlay": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"way-edges",
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1761878277,
|
||||
"narHash": "sha256-6fCtyVdTzoQejwoextAu7dCLoy5fyD3WVh+Qm7t2Nhg=",
|
||||
"owner": "oxalica",
|
||||
"repo": "rust-overlay",
|
||||
"rev": "6604534e44090c917db714faa58d47861657690c",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "oxalica",
|
||||
"repo": "rust-overlay",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"systems": {
|
||||
@@ -174,6 +212,25 @@
|
||||
"repo": "walker",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"way-edges": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs_5",
|
||||
"rust-overlay": "rust-overlay"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1766153193,
|
||||
"narHash": "sha256-E1kDfofMXNX5XjrJggSFDVid6/1ETmbp3qRXuuGd6zM=",
|
||||
"owner": "way-edges",
|
||||
"repo": "way-edges",
|
||||
"rev": "03a9091642ad39345115223890000481eeac8333",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "way-edges",
|
||||
"repo": "way-edges",
|
||||
"type": "github"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
|
||||
Reference in New Issue
Block a user