├── .gitignore ├── README.md ├── flake.lock ├── flake.nix ├── homes ├── default.nix └── end │ ├── .config │ ├── ags │ │ ├── assets │ │ │ ├── arch-symbolic.svg │ │ │ ├── debian-symbolic.svg │ │ │ ├── fedora-symbolic.svg │ │ │ ├── flatpak-symbolic.svg │ │ │ ├── google-gemini-symbolic.svg │ │ │ ├── nixos-symbolic.svg │ │ │ ├── openai-symbolic.svg │ │ │ └── ubuntu-symbolic.svg │ │ ├── config.js │ │ ├── data │ │ │ ├── keybinds.js │ │ │ ├── keyboardlayouts.js │ │ │ ├── languages.js │ │ │ ├── quicklaunches.js │ │ │ ├── quotes.js │ │ │ ├── sourceviewtheme.xml │ │ │ └── weather.js │ │ ├── imports.js │ │ ├── lib │ │ │ ├── advancedwidgets.js │ │ │ ├── animatedcircularprogress.js │ │ │ ├── calendarlayout.js │ │ │ ├── configwidgets.js │ │ │ ├── cursorhover.js │ │ │ ├── materialicon.js │ │ │ ├── md2pango.js │ │ │ ├── navigationindicator.js │ │ │ ├── notification.js │ │ │ ├── popupwindow.js │ │ │ ├── roundedcorner.js │ │ │ ├── separator.js │ │ │ └── statusicons.js │ │ ├── scripts │ │ │ ├── README.md │ │ │ ├── color_generation │ │ │ │ ├── applycolor.sh │ │ │ │ ├── colorgen.sh │ │ │ │ ├── generate_colors_material.py │ │ │ │ ├── pywal_to_material.scss │ │ │ │ ├── specials │ │ │ │ │ └── _material_badapple.scss │ │ │ │ ├── switchcolor.sh │ │ │ │ └── switchwall.sh │ │ │ ├── hyprland │ │ │ │ └── workspace_action.sh │ │ │ ├── quickscripts │ │ │ │ └── nixos-trim-generations.sh │ │ │ ├── record-script.sh │ │ │ ├── sway │ │ │ │ └── swayToRelativeWs.sh │ │ │ ├── templates │ │ │ │ ├── foot │ │ │ │ │ └── foot.ini │ │ │ │ ├── fuzzel │ │ │ │ │ └── fuzzel.ini │ │ │ │ ├── gradience │ │ │ │ │ └── preset.json │ │ │ │ ├── gtklock │ │ │ │ │ └── main.scss │ │ │ │ ├── hypr │ │ │ │ │ └── colors.conf │ │ │ │ └── terminal │ │ │ │ │ └── sequences.txt │ │ │ └── wayland-idle-inhibitor.py │ │ ├── scss │ │ │ ├── _bar.scss │ │ │ ├── _cheatsheet.scss │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _desktopbackground.scss │ │ │ ├── _dock.scss │ │ │ ├── _lib_classes.scss │ │ │ ├── _lib_mixins.scss │ │ │ ├── _material.scss │ │ │ ├── _music.scss │ │ │ ├── _musicmaterial.scss │ │ │ ├── _musicwal.scss │ │ │ ├── _notifications.scss │ │ │ ├── _osd.scss │ │ │ ├── _osk.scss │ │ │ ├── _overview.scss │ │ │ ├── _session.scss │ │ │ ├── _sidebars.scss │ │ │ ├── _wal.scss │ │ │ └── main.scss │ │ ├── services │ │ │ ├── brightness.js │ │ │ ├── chatgpt.js │ │ │ ├── gemini.js │ │ │ ├── indicator.js │ │ │ ├── messages.js │ │ │ ├── sway.js │ │ │ ├── todo.js │ │ │ ├── waifus.js │ │ │ └── wallpaper.js │ │ ├── style.css │ │ ├── variables.js │ │ └── widgets │ │ │ ├── bar │ │ │ ├── main.js │ │ │ ├── music.js │ │ │ ├── spaceleft.js │ │ │ ├── spaceright.js │ │ │ ├── system.js │ │ │ ├── tray.js │ │ │ ├── workspaces_hyprland.js │ │ │ └── workspaces_sway.js │ │ │ ├── cheatsheet │ │ │ ├── keybinds.js │ │ │ └── main.js │ │ │ ├── desktopbackground │ │ │ ├── main.js │ │ │ ├── system.js │ │ │ ├── timeandlaunches.js │ │ │ └── wallpaper.js │ │ │ ├── dock │ │ │ ├── dock.js │ │ │ └── main.js │ │ │ ├── indicators │ │ │ ├── colorscheme.js │ │ │ ├── indicatorvalues.js │ │ │ ├── main.js │ │ │ ├── musiccontrols.js │ │ │ └── notificationpopups.js │ │ │ ├── onscreenkeyboard │ │ │ ├── main.js │ │ │ └── onscreenkeyboard.js │ │ │ ├── overview │ │ │ ├── actions.js │ │ │ ├── main.js │ │ │ ├── miscfunctions.js │ │ │ ├── overview_hyprland.js │ │ │ ├── searchbuttons.js │ │ │ ├── searchitem.js │ │ │ └── windowcontent.js │ │ │ ├── screencorners │ │ │ └── main.js │ │ │ ├── session │ │ │ ├── main.js │ │ │ └── sessionscreen.js │ │ │ ├── sideleft │ │ │ ├── apis │ │ │ │ ├── ai_chatmessage.js │ │ │ │ ├── chatgpt.js │ │ │ │ ├── gemini.js │ │ │ │ └── waifu.js │ │ │ ├── apiwidgets.js │ │ │ ├── main.js │ │ │ ├── sideleft.js │ │ │ ├── toolbox.js │ │ │ └── tools │ │ │ │ ├── color.js │ │ │ │ ├── colorpicker.js │ │ │ │ ├── module.js │ │ │ │ └── quickscripts.js │ │ │ └── sideright │ │ │ ├── calendar.js │ │ │ ├── main.js │ │ │ ├── notificationlist.js │ │ │ ├── quicktoggles.js │ │ │ ├── sideright.js │ │ │ └── todolist.js │ ├── fcitx5 │ │ ├── conf │ │ │ ├── cached_layouts │ │ │ ├── notifications.conf │ │ │ └── unikey.conf │ │ ├── config │ │ └── profile │ ├── fish │ │ ├── completions │ │ │ └── fisher.fish │ │ ├── config.fish │ │ ├── fish_plugins │ │ ├── fish_variables │ │ └── functions │ │ │ └── fisher.fish │ ├── foot │ │ └── foot.ini │ ├── fuzzel │ │ └── fuzzel.ini │ ├── mpv │ │ └── mpv.conf │ ├── starship.toml │ └── thorium-flags.conf │ ├── ags.nix │ ├── anyrun.nix │ ├── browser.nix │ ├── cachix.nix │ ├── dconf.nix │ ├── default.nix │ ├── dotfiles.nix │ ├── hyprland.nix │ ├── mimelist.nix │ ├── packages.nix │ ├── starship.nix │ ├── sway.nix │ └── theme.nix └── hosts ├── CirnOS ├── audio.nix ├── configuration.nix ├── default.nix ├── gnome.nix ├── hardware-configuration.nix ├── laptop.nix └── locale.nix └── default.nix /.gitignore: -------------------------------------------------------------------------------- 1 | result 2 | nixos.qcow2 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/flake.nix -------------------------------------------------------------------------------- /homes/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/default.nix -------------------------------------------------------------------------------- /homes/end/.config/ags/assets/arch-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/assets/arch-symbolic.svg -------------------------------------------------------------------------------- /homes/end/.config/ags/assets/debian-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/assets/debian-symbolic.svg -------------------------------------------------------------------------------- /homes/end/.config/ags/assets/fedora-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/assets/fedora-symbolic.svg -------------------------------------------------------------------------------- /homes/end/.config/ags/assets/flatpak-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/assets/flatpak-symbolic.svg -------------------------------------------------------------------------------- /homes/end/.config/ags/assets/google-gemini-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/assets/google-gemini-symbolic.svg -------------------------------------------------------------------------------- /homes/end/.config/ags/assets/nixos-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/assets/nixos-symbolic.svg -------------------------------------------------------------------------------- /homes/end/.config/ags/assets/openai-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/assets/openai-symbolic.svg -------------------------------------------------------------------------------- /homes/end/.config/ags/assets/ubuntu-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/assets/ubuntu-symbolic.svg -------------------------------------------------------------------------------- /homes/end/.config/ags/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/config.js -------------------------------------------------------------------------------- /homes/end/.config/ags/data/keybinds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/data/keybinds.js -------------------------------------------------------------------------------- /homes/end/.config/ags/data/keyboardlayouts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/data/keyboardlayouts.js -------------------------------------------------------------------------------- /homes/end/.config/ags/data/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/data/languages.js -------------------------------------------------------------------------------- /homes/end/.config/ags/data/quicklaunches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/data/quicklaunches.js -------------------------------------------------------------------------------- /homes/end/.config/ags/data/quotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/data/quotes.js -------------------------------------------------------------------------------- /homes/end/.config/ags/data/sourceviewtheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/data/sourceviewtheme.xml -------------------------------------------------------------------------------- /homes/end/.config/ags/data/weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/data/weather.js -------------------------------------------------------------------------------- /homes/end/.config/ags/imports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/imports.js -------------------------------------------------------------------------------- /homes/end/.config/ags/lib/advancedwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/lib/advancedwidgets.js -------------------------------------------------------------------------------- /homes/end/.config/ags/lib/animatedcircularprogress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/lib/animatedcircularprogress.js -------------------------------------------------------------------------------- /homes/end/.config/ags/lib/calendarlayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/lib/calendarlayout.js -------------------------------------------------------------------------------- /homes/end/.config/ags/lib/configwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/lib/configwidgets.js -------------------------------------------------------------------------------- /homes/end/.config/ags/lib/cursorhover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/lib/cursorhover.js -------------------------------------------------------------------------------- /homes/end/.config/ags/lib/materialicon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/lib/materialicon.js -------------------------------------------------------------------------------- /homes/end/.config/ags/lib/md2pango.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/lib/md2pango.js -------------------------------------------------------------------------------- /homes/end/.config/ags/lib/navigationindicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/lib/navigationindicator.js -------------------------------------------------------------------------------- /homes/end/.config/ags/lib/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/lib/notification.js -------------------------------------------------------------------------------- /homes/end/.config/ags/lib/popupwindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/lib/popupwindow.js -------------------------------------------------------------------------------- /homes/end/.config/ags/lib/roundedcorner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/lib/roundedcorner.js -------------------------------------------------------------------------------- /homes/end/.config/ags/lib/separator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/lib/separator.js -------------------------------------------------------------------------------- /homes/end/.config/ags/lib/statusicons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/lib/statusicons.js -------------------------------------------------------------------------------- /homes/end/.config/ags/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scripts/README.md -------------------------------------------------------------------------------- /homes/end/.config/ags/scripts/color_generation/applycolor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scripts/color_generation/applycolor.sh -------------------------------------------------------------------------------- /homes/end/.config/ags/scripts/color_generation/colorgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scripts/color_generation/colorgen.sh -------------------------------------------------------------------------------- /homes/end/.config/ags/scripts/color_generation/generate_colors_material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scripts/color_generation/generate_colors_material.py -------------------------------------------------------------------------------- /homes/end/.config/ags/scripts/color_generation/pywal_to_material.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scripts/color_generation/pywal_to_material.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scripts/color_generation/specials/_material_badapple.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scripts/color_generation/specials/_material_badapple.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scripts/color_generation/switchcolor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scripts/color_generation/switchcolor.sh -------------------------------------------------------------------------------- /homes/end/.config/ags/scripts/color_generation/switchwall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scripts/color_generation/switchwall.sh -------------------------------------------------------------------------------- /homes/end/.config/ags/scripts/hyprland/workspace_action.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scripts/hyprland/workspace_action.sh -------------------------------------------------------------------------------- /homes/end/.config/ags/scripts/quickscripts/nixos-trim-generations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scripts/quickscripts/nixos-trim-generations.sh -------------------------------------------------------------------------------- /homes/end/.config/ags/scripts/record-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scripts/record-script.sh -------------------------------------------------------------------------------- /homes/end/.config/ags/scripts/sway/swayToRelativeWs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scripts/sway/swayToRelativeWs.sh -------------------------------------------------------------------------------- /homes/end/.config/ags/scripts/templates/foot/foot.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scripts/templates/foot/foot.ini -------------------------------------------------------------------------------- /homes/end/.config/ags/scripts/templates/fuzzel/fuzzel.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scripts/templates/fuzzel/fuzzel.ini -------------------------------------------------------------------------------- /homes/end/.config/ags/scripts/templates/gradience/preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scripts/templates/gradience/preset.json -------------------------------------------------------------------------------- /homes/end/.config/ags/scripts/templates/gtklock/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scripts/templates/gtklock/main.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scripts/templates/hypr/colors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scripts/templates/hypr/colors.conf -------------------------------------------------------------------------------- /homes/end/.config/ags/scripts/templates/terminal/sequences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scripts/templates/terminal/sequences.txt -------------------------------------------------------------------------------- /homes/end/.config/ags/scripts/wayland-idle-inhibitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scripts/wayland-idle-inhibitor.py -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/_bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scss/_bar.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/_cheatsheet.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scss/_cheatsheet.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scss/_colors.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scss/_common.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/_desktopbackground.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scss/_desktopbackground.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/_dock.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scss/_dock.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/_lib_classes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scss/_lib_classes.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/_lib_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scss/_lib_mixins.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/_material.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scss/_material.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/_music.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scss/_music.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/_musicmaterial.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/_musicwal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scss/_musicwal.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/_notifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scss/_notifications.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/_osd.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scss/_osd.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/_osk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scss/_osk.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/_overview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scss/_overview.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/_session.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scss/_session.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/_sidebars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scss/_sidebars.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/_wal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scss/_wal.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/scss/main.scss -------------------------------------------------------------------------------- /homes/end/.config/ags/services/brightness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/services/brightness.js -------------------------------------------------------------------------------- /homes/end/.config/ags/services/chatgpt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/services/chatgpt.js -------------------------------------------------------------------------------- /homes/end/.config/ags/services/gemini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/services/gemini.js -------------------------------------------------------------------------------- /homes/end/.config/ags/services/indicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/services/indicator.js -------------------------------------------------------------------------------- /homes/end/.config/ags/services/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/services/messages.js -------------------------------------------------------------------------------- /homes/end/.config/ags/services/sway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/services/sway.js -------------------------------------------------------------------------------- /homes/end/.config/ags/services/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/services/todo.js -------------------------------------------------------------------------------- /homes/end/.config/ags/services/waifus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/services/waifus.js -------------------------------------------------------------------------------- /homes/end/.config/ags/services/wallpaper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/services/wallpaper.js -------------------------------------------------------------------------------- /homes/end/.config/ags/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/style.css -------------------------------------------------------------------------------- /homes/end/.config/ags/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/variables.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/bar/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/bar/main.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/bar/music.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/bar/music.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/bar/spaceleft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/bar/spaceleft.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/bar/spaceright.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/bar/spaceright.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/bar/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/bar/system.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/bar/tray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/bar/tray.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/bar/workspaces_hyprland.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/bar/workspaces_hyprland.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/bar/workspaces_sway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/bar/workspaces_sway.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/cheatsheet/keybinds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/cheatsheet/keybinds.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/cheatsheet/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/cheatsheet/main.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/desktopbackground/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/desktopbackground/main.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/desktopbackground/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/desktopbackground/system.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/desktopbackground/timeandlaunches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/desktopbackground/timeandlaunches.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/desktopbackground/wallpaper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/desktopbackground/wallpaper.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/dock/dock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/dock/dock.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/dock/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/dock/main.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/indicators/colorscheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/indicators/colorscheme.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/indicators/indicatorvalues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/indicators/indicatorvalues.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/indicators/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/indicators/main.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/indicators/musiccontrols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/indicators/musiccontrols.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/indicators/notificationpopups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/indicators/notificationpopups.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/onscreenkeyboard/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/onscreenkeyboard/main.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/onscreenkeyboard/onscreenkeyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/onscreenkeyboard/onscreenkeyboard.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/overview/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/overview/actions.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/overview/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/overview/main.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/overview/miscfunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/overview/miscfunctions.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/overview/overview_hyprland.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/overview/overview_hyprland.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/overview/searchbuttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/overview/searchbuttons.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/overview/searchitem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/overview/searchitem.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/overview/windowcontent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/overview/windowcontent.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/screencorners/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/screencorners/main.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/session/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/session/main.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/session/sessionscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/session/sessionscreen.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/sideleft/apis/ai_chatmessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/sideleft/apis/ai_chatmessage.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/sideleft/apis/chatgpt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/sideleft/apis/chatgpt.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/sideleft/apis/gemini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/sideleft/apis/gemini.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/sideleft/apis/waifu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/sideleft/apis/waifu.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/sideleft/apiwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/sideleft/apiwidgets.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/sideleft/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/sideleft/main.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/sideleft/sideleft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/sideleft/sideleft.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/sideleft/toolbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/sideleft/toolbox.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/sideleft/tools/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/sideleft/tools/color.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/sideleft/tools/colorpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/sideleft/tools/colorpicker.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/sideleft/tools/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/sideleft/tools/module.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/sideleft/tools/quickscripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/sideleft/tools/quickscripts.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/sideright/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/sideright/calendar.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/sideright/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/sideright/main.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/sideright/notificationlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/sideright/notificationlist.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/sideright/quicktoggles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/sideright/quicktoggles.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/sideright/sideright.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/sideright/sideright.js -------------------------------------------------------------------------------- /homes/end/.config/ags/widgets/sideright/todolist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/ags/widgets/sideright/todolist.js -------------------------------------------------------------------------------- /homes/end/.config/fcitx5/conf/cached_layouts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/fcitx5/conf/cached_layouts -------------------------------------------------------------------------------- /homes/end/.config/fcitx5/conf/notifications.conf: -------------------------------------------------------------------------------- 1 | [HiddenNotifications] 2 | 0=wayland-diagnose-other 3 | 4 | -------------------------------------------------------------------------------- /homes/end/.config/fcitx5/conf/unikey.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/fcitx5/conf/unikey.conf -------------------------------------------------------------------------------- /homes/end/.config/fcitx5/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/fcitx5/config -------------------------------------------------------------------------------- /homes/end/.config/fcitx5/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/fcitx5/profile -------------------------------------------------------------------------------- /homes/end/.config/fish/completions/fisher.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/fish/completions/fisher.fish -------------------------------------------------------------------------------- /homes/end/.config/fish/config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/fish/config.fish -------------------------------------------------------------------------------- /homes/end/.config/fish/fish_plugins: -------------------------------------------------------------------------------- 1 | jorgebucaran/fisher 2 | -------------------------------------------------------------------------------- /homes/end/.config/fish/fish_variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/fish/fish_variables -------------------------------------------------------------------------------- /homes/end/.config/fish/functions/fisher.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/fish/functions/fisher.fish -------------------------------------------------------------------------------- /homes/end/.config/foot/foot.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/foot/foot.ini -------------------------------------------------------------------------------- /homes/end/.config/fuzzel/fuzzel.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/fuzzel/fuzzel.ini -------------------------------------------------------------------------------- /homes/end/.config/mpv/mpv.conf: -------------------------------------------------------------------------------- 1 | keep-open=yes -------------------------------------------------------------------------------- /homes/end/.config/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/starship.toml -------------------------------------------------------------------------------- /homes/end/.config/thorium-flags.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/.config/thorium-flags.conf -------------------------------------------------------------------------------- /homes/end/ags.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/ags.nix -------------------------------------------------------------------------------- /homes/end/anyrun.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/anyrun.nix -------------------------------------------------------------------------------- /homes/end/browser.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/browser.nix -------------------------------------------------------------------------------- /homes/end/cachix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/cachix.nix -------------------------------------------------------------------------------- /homes/end/dconf.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/dconf.nix -------------------------------------------------------------------------------- /homes/end/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/default.nix -------------------------------------------------------------------------------- /homes/end/dotfiles.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/dotfiles.nix -------------------------------------------------------------------------------- /homes/end/hyprland.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/hyprland.nix -------------------------------------------------------------------------------- /homes/end/mimelist.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/mimelist.nix -------------------------------------------------------------------------------- /homes/end/packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/packages.nix -------------------------------------------------------------------------------- /homes/end/starship.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/starship.nix -------------------------------------------------------------------------------- /homes/end/sway.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/sway.nix -------------------------------------------------------------------------------- /homes/end/theme.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/homes/end/theme.nix -------------------------------------------------------------------------------- /hosts/CirnOS/audio.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/hosts/CirnOS/audio.nix -------------------------------------------------------------------------------- /hosts/CirnOS/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/hosts/CirnOS/configuration.nix -------------------------------------------------------------------------------- /hosts/CirnOS/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/hosts/CirnOS/default.nix -------------------------------------------------------------------------------- /hosts/CirnOS/gnome.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/hosts/CirnOS/gnome.nix -------------------------------------------------------------------------------- /hosts/CirnOS/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/hosts/CirnOS/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/CirnOS/laptop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/hosts/CirnOS/laptop.nix -------------------------------------------------------------------------------- /hosts/CirnOS/locale.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/hosts/CirnOS/locale.nix -------------------------------------------------------------------------------- /hosts/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/end-4/CirnOS/HEAD/hosts/default.nix --------------------------------------------------------------------------------